DavidChurchman Coach

Comments

  • Yeah, n would be great, especially under the category name, like what would be standard in a publication. I'd add the labels currently available should have smarter placement, i.e. median goes on the median, Q3 goes on Q3, etc.
  • No, can't install from a mirror or directly from GitHub
  • Not super clear what will be shown for each of the 21 "cards", but if the idea is to show them all on the same screen, I would try to find a way to graph all the combinations in a single card. It would be impossible to get 21 cards onto the same screen in Domo, with how sparse the design options are in Domo. You might…
  • Also, something weird about the lat/long maps are that you can apply color rules, but they don't show up in the "Chart Properties" panel. You have to access them through the color rules menu up top
  • Yes, but… Are all staff that work in a department in the same State? If not, then you'd need a different card type. I'd say the best card type for this level of detail is the lat/long map, but for that you'll need to get the lat/longs instead of the zip codes (I'm sure there are tables you can join to your zips to get…
  • It seems to that the team/region/country cards would be on such different scales that they wouldn't be that useful to have all on the same card. The simplest implementation would be 3 different line graph cards, one using "Team" for its series, one using "Region" for its series, and one using "Country" for its series. You…
  • Is the same dataset powering your "Units" gauge as the map? If the goal is to get the same number to appear on both that and the map card, a good place to start would be what is different about those two cards
  • It's a little unclear what you want ConsolidationDay to be when the customer is not 'Spektra', but otherwise, this should work: CASE WHEN customer='Spektra' THEN 'Wednesday, Friday' ELSE 'What you want ConsolidationDay to be when the customer is not Spektra' END If you want it to be null when the customer is not 'Spektra',…
  • Yes, I have gotten this to work. Heads up: HTML formatting tags only work on Summary Numbers (which you got to work), HTML tables, and Heatmap tables. (Not MegaTables or Pivot Tables). Stuff in your HTML formatting might get "trumped" by other properties native to the card. For example, the font-weight (bold/vs. not bold)…
  • There's a calendar card-type, if you just want a list of dates. But my guess is you're charting some data that has gaps in which dates there is data for, and you'd like those gaps to be maintained or shown with labels in whatever chart/table you're working on. The answer to that is, no, you can't graph data that isn't in…
  • There are two A/3/M rows, so 2/3=.67 is correct, right?
  • @jrtomici Hard to say what's going on. It looks like you added a few rows to your example data. Could you post a screen grab of the raw example dataset, too?
  • The numerator seems like it will be a straight count. For the denominator, you want an average of the Avails fixed by your distinct grouping. count(Network)/(AVG(Avails) FIXED(By Network,Hour, Date))
  • I'm going to plug two ideas in the exchange (one of them mine) that also request descriptions for PPT/PDF exports. You could upvote both of them and post your own for fun. Then there will be company in the void that you're shouting into.
  • Sorry, I meant the "summary number" that's part of any analytics card. I don't think you can apply html tags to smart text within a text card (unless someone knows a way to do that?) The other warning is that HTML tags don't show up in previews; you have to save and close a card to see the formatting applied. Finally, I…
  • My favorite way to do this is in the summary number. You can apply HTML formatting tags to summary numbers. Here's an article with some examples: I sometimes will use a text card with blank text and only a summary number, since I have more control over the formatting of the summary number than the card itself. For your…
  • Short answer: there's not really an easy way to do this. A) HTML format each column You can use HTML coding in an HTML table to hard code formatting like this. If you have a wide data structure, each month's formula could look something like this: CONCAT('<div style=color:#000000>', Case when February = January then ''…
  • You can't directly. You could change your measure to be "change from prior month" instead of the raw value. You could have that "change from prior month" as a separate value in the pivot table, and color-code that A different approach I've used is concatenating an icon in the formula. I showed a (not particularly…
  • With just 6 values (Marge/Revenue/Cost and their respective budgets), I think a visual that doesn't require interaction would be preferable to let users see measures at a glance. A bullet chart could do that, and then I would use a different series for budget vs. target to make clear you're trying to push through the…
  • If green is a subset of blue, I think the overlay bar is the appropriate graph. The advantage of the overlay is that even without figuring out the percent that you want, the raw values will be correct, so hovering and tips will work out of the box. The default calculation for percent_of_category isn't necessarily wrong, it…
  • First, I don't think that's an overlay bar, because there's no option label totals in an overlay bar. But if you were using an overlay bar, MichelleH is right that the best approach would be a BeastMode and a tooltip. It's an unusual percentage to get, but I think if you're using an overlay, I agree, it's what you want.…
  • The label options on boxplots make them essentially useless, IMO. You can't even position them in the correct location (i.e. median goes on the median). You could concatenate the N to the axis labels. Something like this: Disadvantage is changing the names of the series makes cross-filtering between cards dice-ier. I would…
  • Ideally, your data would look like this: Category Type Value Budget Planned 343 Budget Carry-over 3432 … The easiest way to get it in that format is with MagicETL. There's probably a more elegant way to do it with a dynamic unpivot, but to me, the easiest to understand is to just select the two columns, add a category…
  • You need to tell the tile what you want it to output: write_dataframe(unique_account_count_cumulative) I also think you want to unindent your current last line to take it out of the loop, otherwise you're unnecessarily over-writing the same dataframe over and over.
  • Unpivoting the taxable/untaxable would be helpful. The sunburst chart is helpful for breaking out a pie-chart into subcategories, with helpful default tooltips aligned to what you want: A treemap is also nice for showing subcategories. One disadvantage of the sunuburst is the area of the sub-categories is too visually big…
  • I think Arbor's solution is probably best. If you want a 0 BeastMode approach: If you have some ID row, then after filtering out the keyword you want, select-all on that ID row. Then clear your keyword filter, and it should still only be the rows without that keyword. Then you can apply a second keyword filter.
  • You could do this with no Beastmodes by playing with the date range, "graph by" and "compare to" in any of "Period over Period" charts.
  • Sankey charts are powered by "From", "To" and "Value" columns. For your example, you'd probably have something like: From To Value Node 1 Node 2 10 Node 1 Node 2 10 Node 2 Node 10
  • I think the case statement is going to have a hard time when the level of aggregation is different for the different clauses. Maybe I'm still not fully understanding your data, but do you really need the partition? If the goal is just repeating every time, then just a straight average would still work, right? case when…
  • If the data is long in the way I structured my example (one column has both actual values and goal values), then not really. You could create a separate card with monthly totals, and include the same symbol in the data labels. (I recommend a bullet chart to show meeting the goal visually by month). If the data is wide, as…