Best Of
Re: Is it possible to create a grouped bullet chart by Month?
Yeah, I want to be able to do this, too, and posted this idea about it. Upvote/comment on it to keep it in the running, because it didn't get much love:
In the meantime, I also recommend this recent discussion, which has some ideas on alternatives/different ways to use bullets:
https://community-forums.domo.com/main/discussion/comment/100908
Re: View as user or view as role
DomoSupport can already do this. Making it available to customers would be fantastic.
Re: View as user or view as role
This feature is extremely important to the successful adoption of Domo within our company. It would provide the ability to validate our security policies, greatly reduce the time spent trouble-shooting access related issues, and improve the user's overall experience.

Re: View as user or view as role
This would be a great addition - my IT team has been in contact with Domo regarding this same feature.
Re: Option to add row number on a table card
I just found a fairly simple solution for this - though having a toggle would definitely be preferred.
Create a Beast Mode with this formula: COUNT(DISTINCT 1)
Insert the column into your table and Display As Running Total.

Re: MapBox - No Background
A Domo "brick" is basically an html page with JavaScript. You can test it outside of Domo if you are familiar with basic html and JavaScript.
It appears the root issue may be that Mapbox is trying to load a stylesheet (css) that violates Domo Bricks Content Security Policy.
I believe Domo bricks run in an iframe. With restrictions for security. And hosted styles like mapbox://style…etc is loaded CSS from an external source. It seems to be blocking that stylesheet. Hence, no background is showing because the base map is a style or overlay.
You could try the https version:
https://api.mapbox.com/styles/v1/mapbox/streets-v11?access_token=YOUR_TOKEN
style: 'https://api.mapbox.com/styles/v1/mapbox/streets-v11?access_token=YOUR_MAPBOX_ACCESS_TOKEN'
If you use custom styles or are coding inline styles with <style> tags, it might be flagging that as well. Stick to external styles. Make sure the map container is getting full height and width with css. But I doubt it since you are getting the donuts.
#map {
width: 100%;
height: 100%;
}
For me….I would go outside Domo and save the code and run it. It's simply an html and Javascript. Throw it into a folder an toss the html up into Chrome's tab area to run it locally. If it runs, then security would seem to be the problem.
Re: Combining Filtered Rows to one table
Hi @SamanthaC,
Yes, this can be accomplished using a CASE statement in Beast Mode. However, the results will be displayed in a column rather than rows. If you provide additional details or a sample dataset, I’d be happy to assist further.
Re: Combining Filtered Rows to one table
Agree with Manasi, you could use a CASE statement in a BeastMode. Something like:
CASE
WHEN [conditions for first table] THEN 'Row 1'
WHEN [conditions for second table] THEN 'Row 2'
WHEN [conditions for third table] THEN 'Row 3'
ELSE 'Exclude'
END
Then filter your card to exclude the 'Exclude' rows.