Average if channel type statement beast mode
Hello,
I am trying to create a summary number that takes an average of one customer type and compares it to another.
My code currently looks like
CONCAT(
(CASE when `Channel` = 'RET' then SUM(`ordercases`)),' | '
(CASE when `Channel` = 'FSV' then SUM(`ordercases`))
I am having trouble with the syntax. Has anyone had any experience with this?
Thanks much!
Update I figured out the code to get it to work
CONCAT(
(SUM(CASE when `Channel`='RET' then `ordercases`end)),' | ',
(SUM(CASE when `Channel`='FSV' then `ordercases`end))
)
Would it be possible to put a custom calculation at the beginning and get it to work too?
The equation I would like to put in front would be sum(case pick)/ sum(order cases) so basically getting an overall average
Best Answer
-
I think that something like this would work as a summary number for this then:
(I think it is easier to read in the photo, but I will paste the text here as well) good luck!
CONCAT(
ROUND((SUM(
CASE WHEN `CHANNEL`='RET' THEN
`CASE PICK` END)
/
SUM(CASE WHEN `CHANNEL`='RET' THEN `ORDER CASES` END))*100
,2), '% for RET Channel | ',
ROUND((SUM(
CASE WHEN `CHANNEL`='FSV' THEN
`CASE PICK` END)
/
SUM(CASE WHEN `CHANNEL`='FSV' THEN `ORDER CASES` END))*100
,2), '% for FSV Channel'
)
“There is a superhero in all of us, we just need the courage to put on the cape.” -Superman2
Answers
-
Is anyone able to help out with this request?
0 -
Hello @KVincent,
You should be able to add this calculation into your previous beastmode.
If you just replace the word "newcalc." with your new calculation it should show in your summary number.CONCAT( (newcalc.),
(SUM(CASE when `Channel`='RET' then `ordercases`end)),' | ',
(SUM(CASE when `Channel`='FSV' then `ordercases`end))
)**Say “Thanks" by clicking the thumbs up in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"1 -
You should be able to add as many calculations to that con at statement as you want.
CONCAT(
ROUND((SUM(case pick calculation) / SUM(order cases calculation))*100,2), ‘% | ‘,
(SUM(CASE when `Channel`='RET' then `ordercases`end)),' | ',(SUM(CASE when `Channel`='FSV' then `ordercases`end))
)i am am not sure what your calculations are for case pick and order cases. But this will give you the percent rounded to 2 decimals.
“There is a superhero in all of us, we just need the courage to put on the cape.” -Superman2 -
Thanks for your reply. So case pick and order cases are individual fields and I am trying to get the average of each othem in beast mode calculation. So basically it would look like this.
CONCAT(
ROUND((SUM(case pick calculation) / SUM(order cases calculation))**when channel = 'RET')**100,2), '% | ', ROUND((SUM(case pick calculation) / SUM(order cases calculation))**when channel = 'FSV')**100,2), ‘% ‘
End)
Would this be possible? Not sure how the string would look. Thanks you so much for your time.
0 -
I think that something like this would work as a summary number for this then:
(I think it is easier to read in the photo, but I will paste the text here as well) good luck!
CONCAT(
ROUND((SUM(
CASE WHEN `CHANNEL`='RET' THEN
`CASE PICK` END)
/
SUM(CASE WHEN `CHANNEL`='RET' THEN `ORDER CASES` END))*100
,2), '% for RET Channel | ',
ROUND((SUM(
CASE WHEN `CHANNEL`='FSV' THEN
`CASE PICK` END)
/
SUM(CASE WHEN `CHANNEL`='FSV' THEN `ORDER CASES` END))*100
,2), '% for FSV Channel'
)
“There is a superhero in all of us, we just need the courage to put on the cape.” -Superman2 -
Thats perfect thank you so much! I have been pondering over this one for weeks now!
0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 738 Beast Mode
- 56 App Studio
- 40 Variables
- 684 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 46 Workflows
- 10 DomoAI
- 35 Predict
- 14 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 123 Manage
- 120 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive