-
Re: how to set up a filter based on the count of a non-numeric field
Aggregations aren't allowed as quick filters so you wouldn't be able to use count(file_id) as the beastmode as you experienced. Is the certain number of files static or is it something that is consta…1 -
Re: Domo Beast Mode/Data Flow
In addition to what @NewsomSolutions said, if doing it in a table or pivote table you might be able to leverage a formula like this. SUM((CASE WHEN `Session Duration` > 10 THEN 1 ELSE 0 END)) / CO…1 -
Re: Maps by world regions
@ST_-Superman-_ has made a helpful video on how to create custom SVG maps. Once you have the map as long as you have data points to support those regions you should be able to get what you're looking…1 -
Re: Total the count of Attendees for last 7 days & last 14 days in Table View
Some variation of the following should work for you. Total Attendees: No beast mode necessary, just do a COUNT aggregation on any column (I used CustID) Last 7 Days %: SUM((CASE WHEN DATEDIFF(CURDATE…1 -
Re: Examples of cards, metrics, charts, etc
Solutions are often heavily dependent on your use case and what people at your company want to see and how they want to see it but I'll throw some things out that might be useful to think about. * Us…1