Comments
-
Yes!
-
Whoops, I thought that's what I did
-
Hey, I also hate this about bullet charts in Domo. I would use them all the time if there were more control of the labels. Give my idea exchange an upvote if this is bothering you:
-
Since you're saying line graph, I'm assuming you want it not just fixed by category but also by date. If it's not fixed by date (or whatever your x variable is) it would be a bunch of horizontal lines. That would be something like this for your completion percentage: ( SUM(COMPLETED) FIXED(BY GROUP_1, DATE) ) / (…
-
Since you're saying line graph, I'm assuming you want it not just fixed by category but also by date. If it's not fixed by date (or whatever your x variable is) it would be a bunch of horizontal lines. That would be something like this for your completion percentage: ( SUM(COMPLETED) FIXED(BY GROUP_1, DATE) ) / (…
-
Not to disagree with the estimable GrantSmith, but the problem is not that you're missing data at the gaps of your graph, it's that you do have data at those gaps, and it is NULL. A line/bar can plot a continuous line with different missing date values, as long as there aren't NULLs at rows: Your BeastMode currently…
-
I'm not sure why this doesn't have more votes. This would add so much functionality! Maybe it could be implemented with something like the drill-path. There could a page-level control that let you switch all the cards at once to a different point on the drill path.
-
Is it possible to have two disconnects in a row for an ID or does it always alternate disconnect/reconnect? If it always alternates, you could rank by id/status, split the dataset into disconnects and reconnects, and then join on id and rank. So first disconnect joins with first reconnect. If the pattern breaks, that…
-
You just have to use a concat() to convert it to a string and wrap it in the appropriate HTML strings. To change it to red, this should work: CONCAT( '<a style="color: #f00">', [YOUR FORMULA], '</a>') To conditionally format it, you would just add that to a CASE: CASE WHEN [YOUR FORMULA]>=0 THEN [YOUR FORMULA] ELSE CONCAT(…
-
I recommend RobB's post here, too:
-
If you just want the average by group, you probably don't need a fixed function. You could just set the aggregation to average. In a table, for example, make the first column GROUP_1 and the second column your BeastMode. Or if that's not working, could you be more specific about what you mean by "average performer"?
-
How important is it to keep the special characters in the dataset? If ds_get() can't change its encoding (which it seems like maybe it can't?) you could do some ETL before going to pydomo to strip out all the characters that don't work with UTF-8 encoding. I think you could regex replace this with blanks to remove all…
-
I'm not experienced with workbench, so don't know how to fix the upload issue, but you could always add the leading zeros back in with LPAD() when you're joining it to the other file.
-
Clicking on the single value card won't filter the dashboard. If you have your three values together on a card, clicking on them should filter your charts. For example, if they were a single-row table, or a bar chart. Maybe a Treemap?
-
My BeastMode wasn't shared to the dataset before. I made some progress by sharing the BeastMode to the dataset. Not sure why that would make a difference, but I'm closer now. Thanks for helping, @MichelleH
-
Sorry, the y-axis is actually this; sum(ifnull(Promoter,0))/count(DISTINCT Response ID)-sum(ifnull(Detractor,0))/count(DISTINCT Response ID)
-
I removed the sort, and the y-axis is COUNT(DISTINCT Response ID)
-
To generalize @MarkSnodgrass 's solution a bit, you can use most Unicode characters to hack different visuals like this into your tables, summary numbers, chart labels. There a lot of lists of available Unicode characters, but this is my go-to:
-
You could create a rank column using "Rank&Window" in MagicETL. Here's a dataset where I've ranked 4 products by month, then created a beastmode for "Top 3" or "Everyone Else": Here it is filtered for Top 3: In a dashboard setting, you could create a slicer with that BeastMode, and filter the slicer for just "Top 20", so…
-
I would suggest a re-structure of the data to something like this: Then you could do a waterfall: Or a running total bar, which sounds more literally what you're asking for: Here's the MagicETL I used to restructure the data:
-
Super helpful, @RobB !
-
You can use "color rules" in a lat/long map. It doesn't appear in the "chart properties" panel they way it usually does, but you can open them using the button on top, then apply rules to the variable you chose for your "series for color".
-
You can create multiple color rules, not just one. If you use a BeastMode to label your "New" and "Existing" values, use that for your "series for color", open up the color rules, you should be able to create a color rule for "New" and a color rule for "Existing". Alternatively, you can create a color rule for the whole…
-
From what I can see in your flat file, you have 4 rows, 3 which have a SourceCode=AP, and one with a "Blank" source code. There is no TrasnactionAmt for that Blank SourceCode, so it is returning a null, which you convert to 0 with your ifnull. If you want the ELSE to return the total of 1,015.56, then remove the case…
-
You could create a new column that concatenates "Section" and "State" and filter based on that, using the "Fixed" calculations to calculate percent increase. CONCAT(Section, State). Then you can filter on "A-Texas", "B-North Carolina", and "C-Kansas".
-
This appears to be a graph that is filtered on "price differences", "valid" and "invalid", so I'm not sure what the problem is. Maybe it would help to describe or sketch what you were hoping to see after your filter?
-
Yes! The Flex Table has potential to be the most useful card type, making big sparklines-style tables, but the options are so limited, I can't use it for anything.
-
Yes, more table formatting options, please!
-
Did you try skipping the transform to null? Case when coalesce(trim(`commitment`), '') ='' then `loan` else `commitment` end I can't find this written anywhere, so maybe I'm making it up, but I'm pretty sure you can't THEN NULL to return nulls. I'm surprised it's not throwing a syntax error.
-
It might help if you flesh out your example a bit more. Based on what I understand, it sounds like you could create two table cards for your dashboard and two filter cards, and then you could edit the interactions on the filter cards using the "change interactions" menu to select which filter applies to which table card.