Comments
-
It looks like I was the one who answered it in the post you referenced. What you need to do is when you are testing to see if the date is for the future then you need to use a value of zero or blank. It looks like you are just placing a label of "Future" when it is a future date. That won't change the value. If that…
-
This means that the dashboard is potentially being used in another website using Domo Everywhere. Any changes you make will affect anyone who is viewing it in the embedded website. If your organization is not using Domo Everywhere, then it is likely that someone went to the Sharing option on the dashboard and chose Embed…
-
You are close. It should look like this: CASE WHEN LeadsData.Medium = 'Further' THEN myothercolumn ELSE LeadsData.Source-Mapped END You'll need to replace myothercolumn with your actual column that you want to use.
-
Looks like the Dayforce Connector uses the following for its API connection: https://usconfigr57.dayforcehcm.com/{clientNamespace}/V1 If this is outdated, I would send an e-mail to support@domo.com and let them know what the current API call should be. It may take some time for the connector team to update the API calls,…
-
I'm having a hard time visualizing your data so my initial answer may not be what you are looking for. If you have an order with 4 items in the order and 3 are tagged as On-Time based on your initial beast mode, then that should yield a percentage of 75%. Given that, I would suggest you alter your 2nd beast mode to to be…
-
@brycec is the man when it comes to this. He has created a nice collection here: According to him, it looks like you need to create a user task like this: {{baseUrl}}/content/v2/users/:userId/tasks
-
According to AI: It means that a null value was passed where a valid UUID (Universally Unique Identifier) was expected—likely in a request made during the publishing process to Domo Bricks or AppDB. This often happens when one of the required fields for the Domo Brick/app (like manifest.json, config.json, or CLI command…
-
You could investigate custom roles to see if that allows you to eliminate those areas. Otherwise, it seems like looking into a Domo Everywhere solution seems better suited for your needs.
-
Search should respect their permissions, so if they don't have access to a particular card, dashboard, or dataset, it will not show up in the search results. You will want to review what you have given them access to and then what they do in the search will only reveal what they can already see through the navigation.
-
I'm a little confused as to which way you are populating your powerpoint. You say "download" which makes me think that you are on a dashboard in Domo and clicking the export option and choosing export as powerpoint from this menu. Using this method, it will download in the order that the dashboard is laid out and will…
-
Looks like you are using the App Studio Report Builder, which is still in Beta. If you click on the cog and then click on Schedule, you can change the name, which is really the Email Subject
-
If you are not seeing the warning in Excel then you can assume all the data was exported. You can refer to this KB article about limits on exporting and how it pertains to pivot tables as it counts the dataset rows and not the ultimate pivot table rows.
-
I would try using the Query Table tile and then pick any dataset and then write the following SQL query: SELECT CURDATE() As TodaysDate FROM Table_0 LIMIT 1
-
Unfortunately, it does seem like you are a bit limited with the chart properties. I would suggest submitting an idea in the Ideas Exchange to allow for some more flexibility with the Outline View.
-
I receive this message when I submit an entry in my form in App Studio. Are you not receiving this message? There is not a way to modify this message, unfortunately.
-
I have not heard that it is in the pipeline, but I think it is a good idea. I have created an idea in the Ideas Exchange that you can upvote. https://community-forums.domo.com/main/discussion/69752/select-line-style-by-series-item/p1?new=1
-
To my knowledge, if you are wanting your app studio form to have cascading dropdown lists where dropdown list B will show options depending on what was selected in dropdown list A, (i.e. list A contains states, list B contains cities for only the state selected in list A), that is not currently possible in app studio…
-
If you are struggling with this concept in MySQL, I would suggest you use Magic ETL to join the data. It is much easier to use and will run much faster. Here is a video on joining data in Magic ETL if you are unfamiliar with it.
-
The line styles are not configurable per line in that chart type. You could assign color rules for specific lines, which may help you. In one that I did recently, I used a lighter blue for forecasted and a darker blue for actual.
-
You should be able to get around this by using fixed functions. Here's an example: Beast Mode: SUM(AVG(revenue) FIXED (BY sales_rep))
-
Can you provide some sample data of what you have and what you want the end result to look like? It is a bit unclear what you are trying to do when you have 3 aggregators.
-
If you have your Domo users add a profile picture in their Domo profile, you can access that picture by using the following URL: https://{instance-name}.domo.com/api/content/v1/avatar/USER/{userid} If you have the DomoStats People dataset in your instance, you can use ProfilePictureURL column as your image source in your…
-
You would want to create a beast mode that calculates the overall average and put that value in your series. You would want to use the Fixed Functions feature to calculate the overall average. This KB article walks you through it. https://domo-support.domo.com/s/article/4408174643607?language=en_US
-
@Robyn I have noticed the same thing. @Eddie Small is in charge of the recordings. He would know for sure if there is a way to include the chat in the recordings.
-
If you are using Chrome on your phone, you can choose Desktop Site by clicking on the 3 dots in the top corner of the browser. This will render out the normal Domo look you see on your computer.
-
Depending on if you are looking for 6 months to the day or not, there are a couple ways to tackle this. One way would be to subtract 6 months from today's date and include or exclude. You could do it like this: CASE WHEN mydatefield ⇐ DATE_SUB(CURRENT_DATE(), INTERVAL 6 MONTH) THEN 'Include' ELSE 'Exclude' END This video…
-
In the chart types, choose Grouped Bar. In your chart, drag PlannedHours into your y-axis and set an aggregation type. Next, drag Actual Hours into the series and set an aggregation type.
-
Currently, you can not save a chart created within AI chat. Domo is working on adding that functionality. Your alternative would be to create a new dashboard and use the Domo AI Content Builder Agent. You can select the dataset that was used in the AI Chat and then ask the same question. It will likely create multiple…
-
I would start with this article https://domo-support.domo.com/s/article/360042924094?language=en_US
-
Do you have something in your series? It won't be able to do an average if you have something in your series.