Showing Top N and "Others" in Table Chart


Hi,
I have a table chart which shows "Product" and "Sales" in a table chart. I would like to show Top N Products based on Sales (descending) and group the rest of the Products as "Others".
Is this possible?
Best Answer
-
Sample data:
Product,Sales
Product A,1200
Product B,950
Product C,870
Product D,1500
Product E,400
Product F,200
Product G,1750
Product H,300
Product I,100
Product J,600ETL:
Group By:
Rank:
Gives:
Then create beast mode as Product Group:
CASE WHEN `Top N` <= 5 THEN `Product` ELSE 'Others' END
** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0
Answers
-
Create an ETL and use the Rank and Window tile to rank products by sales. Or beast mode with something like
RANK() OVER (ORDER BY SUM(`Sales`) DESC)
Once you have a ran defined you can create a beast mode
CASE
WHEN {rank} < = 5 THEN `Product`
ELSE 'Others'
END** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0 -
Sample data:
Product,Sales
Product A,1200
Product B,950
Product C,870
Product D,1500
Product E,400
Product F,200
Product G,1750
Product H,300
Product I,100
Product J,600ETL:
Group By:
Rank:
Gives:
Then create beast mode as Product Group:
CASE WHEN `Top N` <= 5 THEN `Product` ELSE 'Others' END
** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0 -
@ArborRose Thank you for the answer. Really appreciate it. I was hoping to do something within the analyzer itself. Hopefully they add this feature.
0
Categories
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Data Connections
- 1.3K Connectors
- 309 Workbench
- 17 Cloud Integrations
- Data & ETL
- 2.3K Magic ETL
- 120 SQL DataFlows
- 667 Datasets
- Visualize & Apps
- 90 App Studio
- 198 Pro-code Components
- 2.6K Charting & Analyzer
- 874 Calculations & Variables (Beast Mode)
- AI & Data science
- 23 Domo AI & AI Chat
- 4 Managing AI
- 18 Jupyter Workspaces
- Automate
- 122 Workflows
- Alerts
- Distribute
- 118 Domo Everywhere
- 284 Reporting
- Manage
- 146 Governance & Security
- 489 APIs
- 11 Add-ins & Plugins
- 13 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 118 Community Announcements
- 5K Archive