DavidChurchman Coach image

コメント

  • 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…
    Bar Chart 2025-2028 DavidChurchmanによるコメント 03/14
  • 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. https://community-forums.domo.com/main/discussion/comment/99568#Comment_99568 https://community-forums.domo.com/main/discussion/59142/more-options-for-color-rules-for-cards…
  • 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.
  • You can use a window function to create a running total column: sum(Sum(Impressions)) over(order by Week) And then you can create another one that divides that by your goal. (Not sure if that goal is in another column or what, so just using roughly what it seems to be based on your data): sum(Sum(Impressions)) over(order…
  • You could filter using a BeastMode/Variable combo. This video has a walkthrough of almost exactly this situation: https://www.domo.com/learn/video/variables-use-case-feature-walkthrough
  • I don't know the technical way to say this, but BeastModes need to be at all the same level of aggregation. So if part of your BeastMode is fixed, all of it needs to be fixed. Rather than using nested BeastModes, you'll have better luck re-writing the larger BeastMode from scratch, which will make it obvious where you are…
  • Is the checkbox to "Save Calculation to Dataset" clicked on?
  • Find a table with the lat/long of the provinces and join it to your table of values so you can use the lat/long map. There aren't that many provinces, so if you don't want to bother with a join, it wouldn't be that hard to do it in a BeastMode for lat and Beastmode for long. Something like: — Latitute Case when Province =…
  • There's the 'Card Pages' DomoStats dataset. Is that what you're looking for?
  • For the OP, if you open the "detailed" view of the card, then you can zoom in/out in the browser window to get something pretty similar to what you asked for. If you need every value in something that scrolls on the dashboard (without having to expand to details), maybe a heatmap table instead of a bar chart?
  • Since you have mixed types of aggregation, I think instead of putting the SUM on the drop-down of the Total beastmode, where it affects the entire BeastMode, I would write it into the BeastMode itself: SUM( Online Fee + (amFee-`Platinum amFee`)+ … Royalty Inside Charge) + AVG( `Ticketing Royalties Expense 1 `) The thing is…
  • Could you give a sample of what your data looks like (anonymized) and describe the end-result you're trying to achieve? Ideally, mock up a sample of what you expect to produce from your example data. It's difficult to trouble-shoot a big BeastMode like that without understanding what your data looks like.
  • When you say you added a filter that "Hierarchy not in REVENUE", does that mean the Structure column will never equal 'Revenue'? If so, that means that your denominator will be 0 because of your ELSE statement, and dividing by zero will result in null.
  • @ArborRose Yeah, with arrows like that, you could also make your target 100% transparent and just use the data label as the target (centered data-label from tool-tip, symbols-only data-label): Case when Price* Quantity >= Budget then '🔹' when Price* Quantity < Budget then '🔻' END
    Bullet chart color rule DavidChurchmanによるコメント 03/04
  • This should work: That said, the format you have your data in already is ideal for most uses. You could also pivot it as is in a Pivot Table Card:
    pivot tile? DavidChurchmanによるコメント 03/04
  • As far as I know, you have to use the HTML formatting in a Summary Number. When I do this, I use a single-value card with blank values for the values in the card, and put my HTML beastmode in the Summary. This would be a crude example (hyphens instead of a solid line), but maybe you can adapt it: concat( '<div>',…
    HTML Beast Mode help DavidChurchmanによるコメント 03/04
  • ArborRose's approach works on most card types, but not on the Bullet Chart. For whatever reason, Bullets won't accept color rules like this. If I were to guess why, it's that the philosophy behind a Bullet Chart is to show progress against targets using the relationship between the bar and the target marker, so a color…
    Bullet chart color rule DavidChurchmanによるコメント 03/04
  • The closest thing I can think of out-of-the box is you could use variables to manually explore different combinations, and depending on how complex your situation is, that might be a good way to get an intuitive sense of why the optimal solution is what it is, or what some sub-optimal good-enough solutions would be. Or if…
  • This is a common question: here's one (of many) answers to it: https://community-forums.domo.com/main/discussion/comment/86113#Comment_86113?utm_source=community-search&utm_medium=organic-search&utm_term=filter+on+nulls If you found it frustrating/unintuitive, you could vote on several of the idea exchange ideas to improve…
  • I agree. Did a few double-takes and mis-clicks with these new icons
  • I'm not 100% I understand what you're saying, so I'm going to say what I think you're saying, and then you can correct me if I missed something. (GrantSmith's suggestion is a good one, and likely to lead to a faster/better answer.) I think your data looks something like this: And then you have BeastModes like this: and: In…
  • Is he going to show us some of his MagicETLs? I'd be curious to see if he color-codes his strings between tiles, or how much he uses the notes.
  • +1 to more customizability of Pivot Tables. They've gotten a lot better in the last year or so, but still have a lot of unrealized potential.
  • Agree, this would still be helpful
  • The way I would approach the "master" filter is using a variable, and a BeastMode filtering against that variable on each card. case when month(Date) = Variable then 'Include' else 'Exclude' end (Filter for "Include") Then, when you need to change the whole dashboard, you can use a Control to change the variable for the…
  • One approach is to have a "raw" dataset with no BeastModes, and then save a view of the dataset for each distinct use/dasbhoard. Each view can have its own BeastModes. You can also limit the number of columns and rename the columns going into the dashboard, which can make the filters on the dashboard more user-friendly.
  • These are a collection of links to other ideas suggesting the same thing (descriptions in the email and/or PDF/PPT exports). Maybe we could upvote all of them? Or consolidate all their votes onto this idea? https://community-forums.domo.com/main/discussion/57784/add-card-description-in-scheduled-dashboard-email…