Best Of
Re: Changing dataset update method from Replace to Partition doubles data
I believe this is the expected behaviour. I had discussed this with someone at domo. I think you end up having the original data with a null partition key. They suggested filtering this out.
Re: DOMO creates different embed ID for different users
To my knowledge this is intended so users can't modify other user's embedded settings.
Re: October Community Recap 🕷️
@ArborRose, thanks for your help and super fast insight! I'm always worried about speaking my problems into the void, and I appreciate your approach.
Jessary
Sync with Cloud should only refresh single dataset
We have noticed that if you go to a dataset and hit "Sync with Cloud", it's not only refreshing the chosen dataset but it does so for all the tables in the Cloud Amplifier integration. This can have unexpected side effects and additional lookup costs on the Snowflake side and trigger downstream ETLs.
The manual refresh button on datasets should be separated from the integration itself and should only refresh the targeted dataset.
Now it is misleading, as it is an option for the datasets an not the whole integration. In reality, it does quite the opposite of what we would expect.Thank you for supporting this request!
Re: Need to extract all queries used in our SQL Server connectors.
@manojshipwire @jimsteph it looks like you can get the query that powers the domo dataset by hitting this API:
GET https://{{instance}}.domo.com/api/data/v1/streams/{{streamId}}
The Stream Id for connectors can be found in the DomoStats Dataset History report.
ellibot
Re: Freeze Page Pane
Love this idea it would be super powerful. I often find myself debating where to put filters on my dashboard or even if I want to create multiple filters of the same type for my users experience.
Freeze panes on key cards general would be a nice to have (not just filters), if I had a few 'master cards' that could always present at the top of the dashboard for users to eyeball as they go through/interact with the dashboard's journey it would be super useful. It would be a part of most of my dashboards I think.
Dynamic Pivot
I have a table with a combination of fields and a target value. I want to concat all the fields (Retailer, Field, Target, Strategic Priority) and pivot the table so they are all columns with their respective Target Value underneath.
I know how to do this with the Pivot option in which I manually create a new column for each combination. However, is there a way to have this automatically create new columns? My concern (beyond a whole bunch of manual input - I currently have 67 rows) is there will be rows (with new field combinations) added to this dataset and they'll be excluded unless I recognize and manually add them in.
Below is a screenshot of the data I'm working with for context.
Re: Join the Slack Domo User Group!
Interesting… I see a lot of great engagement on the Slack. It also seems like a lot of the help requests have shifted to Slack. I wonder in the long run if that will make it harder for people to Google answers to questions that have already been asked.
Re: Checkbox, last 3 months, last 6 months
I would use the variables feature to accomplish. You would want to use the radio button control in the variable creation and create two options: Last 3 months and Last 6 months.
Then, create a beast mode that looks to see which option is selected by the user:
CASE WHEN variablename = 'Last 3 months' THEN
CASE WHEN UTC_DATE >= DATE_SUB(CURDATE(), INTERVAL 3 MONTH) THEN 'Include' ELSE 'Exclude' END
WHEN variablename = 'Last 6 months' THEN
CASE WHEN UTC_DATE >= DATE_SUB(CURDATE(), INTERVAL 6 MONTH) THEN 'Include' ELSE 'Exclude' END
END
Add this beast mode to your filter and filter to Include. This should allow the user to select their date range and the card will dynamically change.





