Best Of
Re: Single Value Card - No numeric abbreviations
In the General Chart Properties, for the Divide Value by property, set it to None.
Single Value Card - No numeric abbreviations
Is there a way to turn off abbreviations of numbers in Single Value card?
I have a card that has the value of 1023. It shows as 1.02K (I have it set to 2 decimal places). I can't find anywhere to tell Domo not to use the abbreviation on this card. (ether in the card settings or the value display settings).
Re: Add collapsible sections to "new" dashboard pages like the "old" standard pages
This would be a great improvement - because although you can filter - it would be nice to have a collapsible option especially for longer dashboards that don't work within a sub-dashboard setting.
Or maybe remove have cards that don't produce data within the filtered range temporarily disappear. I'd be happy with either one just to get the information in a usable format.
Re: Reusable "drill path"/cards
I would love to be able to Save a Drill path to a Dataset (and give it a decent, descriptive name) so that when I go to create a drill path for a report, I could choose from an existing drill path.
Re: Case Statement help
Take the output from the last formula tile and feed that into a group by tile. Then feed the output of that and the same formula tile to a Join tile and do the inner join. Then take the output of the join and feed it to your output dataset.
Re: Version history for notebooks
FYI for cards DOMO takes a snapshot of the history after every save. You can view this by going into the card, clicking the card options spanner and then selected the second option 'History' this gives you a visual of what the card looked like in previous iterations.
Would be useful to have for text inputs though too, agreed.
Samuel.
Re: Heatmap in 30 Minute Intervals
You could do something like:
CONCAT(HOUR(`Timestamp`), ':', FLOOR(MINUTE(`Timestamp`)/30)*30)
Minute will return the number of minutes in the timestamp (0-59)
/30 will return a number between 0 and < 2
FLOOR will convert your fraction to 0 or 1.
*30 will convert the interval to either 0 or 30. This will then give you your half-hour buckets.
You may need to extract the hour and minute to separate beast modes in order to sort based on the hour and then the 30 minute bucket so that it's sorted properly.

