Got a fun one for grouping Columns together. Need help building

This one will take some setup.
I have a card by Style and Color, with values of Total AVAIL STK and then broken out by Size columns, and TOTAL WIP and by Size columns.
The issue is when we filter to a style, we don't need to see the sizes it doesn't have. If we're viewing a purse, it only needs to show "1SZ" since it would be the only one populating. The rest is just noise making the card harder to read.
To do this, I wrote the simple Beast Mode below:
CASE WHEN (1SZ
<> 0 OR 1SZ WIP
<> 0) THEN '1SZ'
WHEN (XS
<> 0 OR XS WIP
<> 0) THEN 'XS'
WHEN (SML
<> 0 OR SML WIP
<> 0) THEN 'SML'
WHEN (MED
<> 0 OR MED WIP
<> 0) THEN 'MED'
WHEN (LRG
<> 0 OR LRG WIP
<> 0) THEN 'LRG'
WHEN (XLG
<> 0 OR XLG WIP
<> 0) THEN 'XLG'
WHEN (XXL
<> 0 OR XXL WIP
<> 0) THEN 'XXL'
WHEN (3XL
<> 0 OR 3XL WIP
<> 0) THEN '3XL'
END
This created this card, which in theory is exactly what we need:
The problem, as you may already see, is that it isn't including all of the sizes that populate in the first card. It's taking the first clause, in this case "WHEN (XS
<> 0 OR XS WIP
<> 0) THEN 'XS'" and defaulting every size after that as XS, since the XS column was populating. When XS isn't populating but SML is, it makes every value "SML" and so on…
Could someone help with how I can write a Beast Mode that only looks at one of the size columns and only labels that one, then moving down the line for the rest of the sizes?
All help is appreciated. Thank you!
Best Answer
Answers
-
Yeah, you should dynamic unpivot the data in MagicETL. If that's not an option, you could color code 0s to be gray to de-emphasize them, which is another way to make sparse tables more readable. (Use black with 100% transparency and select the lighter color font).
Please 💡/💖/👍/😊 this post if you read it and found it helpful.
Please accept the answer if it solved your problem.
0
Categories
- All Categories
- 2K Product Ideas
- 2K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 311 Workbench
- 7 Cloud Amplifier
- 9 Federated
- 3K Transform
- 114 SQL DataFlows
- 654 Datasets
- 2.2K Magic ETL
- 4.1K Visualize
- 2.5K Charting
- 803 Beast Mode
- 79 App Studio
- 44 Variables
- 758 Automate
- 188 Apps
- 480 APIs & Domo Developer
- 73 Workflows
- 17 DomoAI
- 40 Predict
- 17 Jupyter Workspaces
- 23 R & Python Tiles
- 408 Distribute
- 119 Domo Everywhere
- 279 Scheduled Reports
- 10 Software Integrations
- 141 Manage
- 137 Governance & Security
- 8 Domo Community Gallery
- 47 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 114 Community Announcements
- 4.8K Archive