Comments
-
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:…
-
With your sample data, I think this does what you were asking for: Create a control variable: Create a beastmode reference your variable (when YTD, finding the cumulative sum by year, else find the regular sum): Add the variable control and you should be able to toggle between MTD and YTD calculations:
-
It would be helpful to have a dummy sample of your data, because you're throwing me off by saying you have a column for 2023, 2024, and 2025 values. That sounds like a wide dataset, but then you have a single date column, which sounds like long data. I'm going to assume your data is long and that those year columns are…
-
It's really hard to get partition or fixed functions to play well with a Pivot Table. You could create something that checks against an input variable, where the user can input which week they want to calculate BOH with (less automatic then what you were exploring): case when Week ending date >= date(Date Input Variable)…
-
Or a shift-click functionality that allows you to select multiple columns and drag them all at the same time
-
With that OVER() clause in your CASE statement, it's producing a value for each week that can't be combined. If you have the week as part of the Row/Column definition, then you're fine. If you don't, then there are collisions. The way your function is written will always give 0s to everything besides this week, so is there…
-
There are the Domo University courses, which will have a lot of examples of how to apply everything in Domo. The only caveat is I feel like most of the Domo courses assume your data is already structured relatively cleanly, maybe coming in from system. For a theoretical grounding on how to structure your data from the…
-
I have done group bys on similarly large data without a problem. Here are a couple suggestions for debugging: Create an Output Tile directly from the GroupBy in your full dataset to see if it's blank before you rejoin it back to the data. (You can delete it later). Double check that there's only one value for your test ID.…
-
For the original question, I have done something like this using a BeastMode as a card filter for every card on the page, filtering for 'Include': CASE WHEN Text_Variable IS NULL THEN 'Include' WHEN Text_Variable = 'Default Text' THEN 'Include' WHEN LOWER(Description) LIKE CONCAT('%', LOWER(Text_Variable), '%' ) then…
-
@brycec LISTAGG is a new one for me, thank you! I played with it, and it also works with DISTINCT, so I'll add that to your suggestion: REPLACE(LISTAGG(DISTINCT `Current Pages), ',', ', ')
-
I don't think you can enforce a naming pattern when people are creating the dashboards, but you could use the DomoStats datasets to check your names against a pattern. You could set an alert that sends you (or everyone, for some good public shaming) an email every time someone creates a new app/dash that violates your…
-
One other place you can add text from fields is in the summary number. Nice thing about the summary number is you can apply HTML formatting (or not) with a BeastMode. There are some kind of ugly examples of that here, but you get the idea: One thing that is impossible in a BeastMode (as far as I know) is to reference…
-
1) I don't think that it's this BeastMode that's causing the data to split across columns, since you're summing it. It's probably the TEST column, which I assume is the same one as this discussion: To quote myself from that discussion: "One note of caution is that your current set-up won't work if you have multiple…
-
And just like that, she was gone. The stock model with chunky glasses staring contentedly at her phone is no more. Now, I kind of miss her. I guess you don't know what you have until it's gone.
-
You can schedule cards or dashboards as reports that are emailed to people from Domo. If you wanted to automate it, you could create the dashboard using the DomoStats data, and create tables of things like "Dashboards created this month" or you could just make something manual with text cards that you schedule to go out…
-
Yes, I would love more flexibility for reference lines. Here's another idea that fleshes that out even more, if you want to add votes to that one as well:
-
Your script uses the OpenCage API, so that's what I tested:
-
Be careful: both the address you were searching for and your API key are in that error code. Using your API key, I got the same 401 error as you. Using a valid API key and your exact same script, I was able to retrieve coordinates. I would double check your API key one more time.
-
Wow, what a great find. This is incredibly misleading advertising from Domo. Everything about this would be very difficult to achieve without basically coding it yourself in Javascript and using a D3 or Echarts brick to put it in your dashboard (and if you're able to do that, what is the value-add of Domo?). I'm commenting…
-
Some similar ideas (I'm not alone):
-
What do I have to do to prove that I am aware of App Studio? It's like a missionary doing their service trip inside the church building. We know, Khushboo!
-
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.
-
If you switch it back to an HTML table, are there any settings not turned to default? Sometimes when you switch between card types, you can check off a setting that still applies to other card types, even if that setting doesn't appear in the menus. My other thought it that maybe one of the cards is on a "view" of the data…
-
You need to reshape your data so the years are in a column. That would be easy in a MagicETL: If you don't want to reshape your data, the only card I can think that would make sense "out of the box" is the pivot table card:
-
You need to reshape your data so the years are in a column. That would be easy in a MagicETL:
-
With the 4 columns you describe (Product, 2025, …, 2028), I don't think there's a way to get the bar chart you described without reshaping your data first. The only card I can think of that would analyze your data as is would be the pivot table: If you're willing to do a quick MagicETL to unpivot your data to a long…
-
You could use the Word Cloud chart type, and have a different dataset/column/etc. feed into each slide:
-
There's another Qualtrics report called "Survey Response Choices" that you can join to the "Survey Responses" report for the labels.
-
Yes, this is a frequent question in the forum, and multiple ideas have been posted about it. Pasting a few of those for additional visibility.…
-
You can create a view of your dataset and rename your date column for that view. Then use your view for the single card. The client filter will still work, but since the name of the date column is different, the page filter for the date won't affect that card.