Grouping my data
I am building a card that lists out quantity for each Action (STARTS, RESTARTS, TERMINATES, STOPS). Each Set of Actions can fall into a different Week (WEEK1, WEEK2, WEEK3, WEEK4 & WEEK5). My data is summing up but it is creating multiple duplicate lines (See Screen shot). How do I get each action to show only once and display each weeks total vs creating new lines for each weeks totals?
Here are my CASE satements for the WEEKS as of now...
WEEK1
(CASE
WHEN `weekoffiscalperiod`='1' THEN COUNT(DISTINCT CONCAT
(`DataSourceDB`,'_',`phoneid`,'_',`actionid`,'_',`reason`,'_',`date1`))
ELSE 0
END)
WEEK2
(CASE
WHEN `weekoffiscalperiod`='2' THEN COUNT(DISTINCT CONCAT
(`DataSourceDB`,'_',`phoneid`,'_',`actionid`,'_',`reason`,'_',`date1`))
ELSE 0
END)
WEEK3
(CASE
WHEN `weekoffiscalperiod`='3' THEN COUNT(DISTINCT CONCAT
(`DataSourceDB`,'_',`phoneid`,'_',`actionid`,'_',`reason`,'_',`date1`))
ELSE 0
END)
WEEK4
(CASE
WHEN `weekoffiscalperiod`='4' THEN COUNT(DISTINCT CONCAT
(`DataSourceDB`,'_',`phoneid`,'_',`actionid`,'_',`reason`,'_',`date1`))
ELSE 0
END)
WEEK5
(CASE
WHEN `weekoffiscalperiod`='5' THEN COUNT(DISTINCT CONCAT
(`DataSourceDB`,'_',`phoneid`,'_',`actionid`,'_',`reason`,'_',`date1`))
ELSE 0
END)
Comments
-
Change the aggregate for each value in the chart to SUM or MAX
______________________________________________________________________________________________
“There is a superhero in all of us, we just need the courage to put on the cape.” -Superman
______________________________________________________________________________________________0 -
If that doesn't work, you can try to alter your beastmode a bit:
COUNT(DISTINCT CASE
WHEN `weekoffiscalperiod`='1' THEN CONCAT
(`DataSourceDB`,'_',`phoneid`,'_',`actionid`,'_',`reason`,'_',`date1`)
END)
______________________________________________________________________________________________
“There is a superhero in all of us, we just need the courage to put on the cape.” -Superman
______________________________________________________________________________________________1 -
Thank you for the help. When you say change the values are you referring to the SALES CATEGORY?
0
Categories
- 7.7K All Categories
- 3 Connect
- 919 Connectors
- 244 Workbench
- 477 Transform
- 1.8K Magic ETL
- 60 SQL DataFlows
- 446 Datasets
- 37 Visualize
- 198 Beast Mode
- 2K Charting
- 8 Variables
- 1 Automate
- 348 APIs & Domo Developer
- 82 Apps
- Workflows
- 14 Predict
- 3 Jupyter Workspaces
- 11 R & Python Tiles
- 241 Distribute
- 59 Domo Everywhere
- 241 Scheduled Reports
- 15 Manage
- 36 Governance & Security
- 27 Product Ideas
- 1.1K Ideas Exchange
- Community Forums
- 14 Getting Started
- 1 Community Member Introductions
- 49 Community News
- 18 Event Recordings
- 579 日本支部