Summary number for non-distinct rows
Hi,
We have 4 sales regions & each has a budget amount. I need to do a summary number that uses the sum of those 4 budgets. 2 regions have the same budget amount so COUNT(DISTINCT) won't work. Each row of the dataset details an expense for a labeled region and that row also contains that region's budget amount (I joined the budget table with the sales table).
I have a card for each region that filters for just that region and I made a beast mode for the summary field to show the amount of budget they have used so far. This works fine for the individual region cards. But on a card I made (with no filter) to summarize all the regions together, the summary number goes to a crazy 674%. Is there a better way to get the usage % for all regions?
This is my current beast mode:
(CONCAT(ROUND(SUM(`ExpenseAmount`) /
((CASE WHEN `Region` = 'Northwest' THEN MIN(`Budget`) ELSE 0 END)
+(CASE WHEN `Region` = 'Southwest' THEN MIN(`Budget`) ELSE 0 END)
+(CASE WHEN `Region` = 'Northeast' THEN MIN(`Budget`) ELSE 0 END)
+(CASE WHEN `Region` = 'Southeast' THEN MIN(`Budget`) ELSE 0 END))
*100,0),'% Usage'))
Thanks, Angela
Best Answers
-
Don't JOIN Budget to Actuals. APPEND Budget to Actuals.
By Appending you'll avoid duplication and can avoid 'crazy math'.
Jae Wilson
Check out my 🎥 Domo Training YouTube Channel 👨💻
**Say "Thanks" by clicking the ❤️ in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"3 -
0
Answers
-
I may not be understanding your data correctly, but couldn't you just do SUM(`Budget`) for your denominator rather than doing a case statement for the 4 regions? Like this:
(CONCAT(ROUND((SUM(`ExpenseAmount`) / SUM(`Budget`)) *100,0),'% Usage'))
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.0 -
Thanks @jaeW_at_Onyx ! The Append did the trick. At first I couldn't see the budgets bu then realized I needed to add a new date field that would pull in both budget lines and expense lines. I finally just cleaned up the last card and they look great!
Thanks again!
Angela
0 -
Thanks @MarkSnodgrass. That is definitely a cleaner statement :) but my issue went deeper to the actual dataset setup.
0
Categories
- 11K All Categories
- 5 Private Company Board
- 2 APAC User Group
- 12 Welcome
- 42 Domo News
- 9.9K Using Domo
- 2K Dataflows
- 2.5K Card Building
- 2.2K Ideas Exchange
- 1.2K Connectors
- 349 Workbench
- 267 Domo Best Practices
- 12 Domo Certification
- 474 Domo Developer
- 51 Domo Everywhere
- 110 Apps
- 726 New to Domo
- 85 Dojo
- Domopalooza
- 1.1K 日本支部
- 4 道場-日本支部へようこそ
- 29 お知らせ
- 65 Kowaza
- 302 仲間に相談
- 664 ひらめき共有