Comments
-
Hi @Ab_Israni When I'm doing comparisons for year over year for custom ranges what I do is restructure my data so that I have several different periods for each record based on the date. For example if you're looking at January 1st it'll have a current value of Jan 1 2026 and a Last Year period value of 2025. I've done a…
-
In this case you'll need to log a ticket with support to have them look into the issue.
-
CASE WHEN Metrics = 'QTY' THEN CASE WHEN SUM(QTY) != 0 THEN SUM(QTY) END WHEN Metrics = 'Sales $' THEN CASE WHEN ROUND(SUM(Sales $), 0) != 0 THEN CONCAT('$', ROUND(SUM(Sales $), 0)) END END Just apply the same logic inside your case statement so you have a nested case statement.
-
Have you tried using a conditional beast mode? CASE WHEN SUM(`field`) != 0 THEN SUM(`field`) END
-
This may be a bug, I recommend logging a ticket with Support to have them look into it.
-
Yes, I'd recommend using the Dataset Copy with Append update method. This will update the dataset every month and automatically give you a timestamp (BATCH_LAST_RUN). You could use an ETL to union these two datasets together and have a column to state "Current" or "Historical" and trigger it to run on your historical…
-
Did you end up using the files API endpoint or a different endpoint?
-
This sounds like a bug with how CourseBuilder is building out the YouTube links. I'd recommend logging a ticket with support
-
When you're using your single groupby (before your formula), what are the values being returned for: SUM(Budget Sales Dollars) SUM(Budget COGs) SUM(Budget Pounds) Do you have any filtering in place? Are there records making it to the group by tile?
-
You can create a custom managed attribute which would allow you to use the new field as part of your dynamic groups.
-
Workbench connects to a single instance. You'll need a secondary workbench server to authenticate with your UAT environment and pull the data.
-
Is the account type the same as the connector you're attempting to use or is the shared account type the same as the account type you created?
-
If you store it as a field in your dataset, you can use Smart Text to display it in a notebook card
-
As Editable tables are currently in beta, I'd recommend bringing this up with the beta team.
-
Domo has a character limit of 1024 characters per column. You can try and talk with Domo to see if they can increase the limit but if you upload a string with more than 1024 characters it'll only save the first 1024. You could attempt to split your base64 into 1024 chunks but would require you to split it out and…
-
This sounds like an internal bug Domo Support will need to address. I'd recommend logging a support ticket. You can also try and clear your cache and login again and see if that will address the issue with the labels.
-
This might be a bug with the latest release. I'd recommend logging a ticket with Domo Support. You may also try clearing your cache and reloading the page to see if that clears up the issue.
-
Your best bet is to log a support ticket as this is an internal issue that Domo Support needs to handle.
-
Simple answer - Not easily. An alternative is to create a new dataflow with your affected dataset as the output, make the necessary changes and output it to another dataset. Once you review and test the dataset you can use the APIs to update your dataflow so the output dataset is the same ID as your input dataset and then…
-
If you want the current date then you can do something like this: CASE WHEN CURRENT_DATE() - INTERVAL 30 DAY > `DATE_FIELD` THEN 'Include' ELSE 'Exclude' END And filter on Include values. Repeat for 90 (just replace the 30)
-
The Access Token isn't the same as a Bearer Token that you need to generate. You'd need to call the appropriate Generate Token endpoint on the api.domo.com server to get your Bearer token to use for future API calls. The Access Token is used for the internal product calls to yourinstance.domo.com and not the api.domo.com.
-
If you can rewrite this MySQL dataflow into a Magic ETL dataflow you'll get a tremendous performance boost. I've seen upwards of 90-95% reduction in execution times for MySQL dataflows I've converted.
-
I'd recommend adding this idea to the Idea Exchange to add more granular control over embed settings.
-
This sounds like a bug. I'd recommend logging a ticket with Domo support
-
Did you have a beast mode saved to the dataset that utilized a variable and new cards don't see it or was the beast mode saved to the card?
-
Are the data values 0 or are the NULL? If you mark them as NULL / Blank it should prevent it from showing on the graph.
-
Yes, you can enable both SSO and direct sign-on
-
Sometimes, if you right-click and inspect network traffic in your browser, the API request to save your layout may return additional information to help diagnose the error. Otherwise you may need to contact support and have them look in the backend.
-
Sometimes, if you right-click and inspect network traffic in your browser, the API request to save your layout may return additional information to help diagnose the error.
-
The private emebed will expect the user to have been authenticated via SSO or direct login. If they aren't then the login screen will appear for the embedded content and after the login it will appear. Each person who is shared the dashboard will have access to the private embed.
