Beast Mode Case Statement Help
For some reason this CASE statement will not validate. I have all the required parts. `PayTotal` and `PayTargetWeek` are both number values and I want this field to return a character string.
case when (sum(`PayTotal`) / `PayTargetWeek`) <= -.05 then 'Under Target'
when (sum(`PayTotal`) / `PayTargetWeek`) >= -.049 and <= .05 then 'On Target'
when (sum(`PayTotal`) / `PayTargetWeek`) >= .051 then 'Above Target'
else 'Not Sure'
end
Best Answers
-
I also tried writing it this way but again...it will *not* resolve/validate.
case when (sum(`PayTotal`) / (CASE when `PayTargetWeek` = 0 then 1 end)) <= -.05 then 'Under Target'
when (sum(`PayTotal`) / (CASE when `PayTargetWeek` = 0 then 1 end)) >= -.049 and <= .05 then 'On Target'
when (sum(`PayTotal`) / (CASE when `PayTargetWeek` = 0 then 1 end)) >= .051 then 'Above Target'
else 'Not Sure'
end0 -
Hi Chad
Generally speaking, beast modes with aggregations within case statements are pretty tricky.
Why are you summing PayTotal but not aggregating PayTargetWeek? What your beast mode is doing is adding up a bunch of rows to get the sum of PayTotal, but then comparing the aggregation against a single row's PayTargetWeek value. Comparing aggregates against single rows does not usually work like you want or expect. Is PayTargetWeek the same value for every row that PayTotal is being summed on? Like, a single row of data has an individual PayTotal for a day or person or something but then it also has a wider PayTargetWeek value, that's not the same granularity? You can get around that by averaging your PayTargetWeek value in the denominator (assuming different granularities)
Also, you are missing something in your second comparison. Each comparison needs two values. Your "<= .05" comparison lacks the first value. The aggregation can't carry over. You'll have to compute that aggregation fully in each comparison.
In addition, there might be values between -.05 and -.049, or .05 and .051, so your would need to adjust the operators to leave no gaps. This won't make your beast mode validate, but it makes the results more usable.
Try this and see what happens:
case
when sum(`PayTotal`) / AVG(`PayTargetWeek`) <= -.05 then 'Under Target'
when sum(`PayTotal`) / AVG(`PayTargetWeek`) > -.05 and sum(`PayTotal`) / AVG(`PayTargetWeek`) <= .05 then 'On Target'
when sum(`PayTotal`) / AVG(`PayTargetWeek`) > .05 then 'Above Target'
else 'Not Sure'
endAaron
MajorDomo @ Merit Medical
**Say "Thanks" by clicking the heart in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0 -
By the time I opened this thread, SUM(`PayTotal`) was just a troubleshooting-itteration of the case() statement I was trying to make work.
I took your suggestion and modified it slightly to:
case
when `PayTotal` / `PayTargetWeek` <= -.05 then 'Under Target'
when `PayTotal` / `PayTargetWeek` > -.05 and `PayTotal` / `PayTargetWeek` <= .05 then 'On Target'
when `PayTotal` / `PayTargetWeek` > .05 then 'Above Target'
else 'Not Sure'
endI did this becuase ultimately I didn't need to SUM(`PayTotal`). I removed the AVG() from PayTargetWeek as well.
In the end, the error that was causing the BeastMode to fail validation was the second evalaution in the case, "when `PayTotal` / `PayTargetWeek` > -.05 and `PayTotal` / `PayTargetWeek` <= .05 then 'On Target' ". Once I added this, Validation Passed.
Thank you all for the assist and explanations.1
Answers
-
You'll need to add a check for divide by 0 possibility.
Try this:
CASE WHEN `PayTargetWeek` = 0 THEN 1 ELSE
case when (sum(`PayTotal`) / `PayTargetWeek`) <= -.05 then 'Under Target'
when (sum(`PayTotal`) / `PayTargetWeek`) >= -.049 and <= .05 then 'On Target'
when (sum(`PayTotal`) / `PayTargetWeek`) >= .051 then 'Above Target'
else 'Not Sure'
endEND
Hopefully that should work for you.
Sincerely,Colt
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
Thanks for the quick response...however, this will still *not* resolve.
CASE when `PayTargetWeek` = 0 then 1 ELSE
case when (sum(`PayTotal`) / `PayTargetWeek`) <= -.05 then 'Under Target'
when (sum(`PayTotal`) / `PayTargetWeek`) >= -.049 and <= .05 then 'On Target'
when (sum(`PayTotal`) / `PayTargetWeek`) >= .051 then 'Above Target'
else 'Not Sure'
end
END0 -
I also tried writing it this way but again...it will *not* resolve/validate.
case when (sum(`PayTotal`) / (CASE when `PayTargetWeek` = 0 then 1 end)) <= -.05 then 'Under Target'
when (sum(`PayTotal`) / (CASE when `PayTargetWeek` = 0 then 1 end)) >= -.049 and <= .05 then 'On Target'
when (sum(`PayTotal`) / (CASE when `PayTargetWeek` = 0 then 1 end)) >= .051 then 'Above Target'
else 'Not Sure'
end0 -
Hi Chad
Generally speaking, beast modes with aggregations within case statements are pretty tricky.
Why are you summing PayTotal but not aggregating PayTargetWeek? What your beast mode is doing is adding up a bunch of rows to get the sum of PayTotal, but then comparing the aggregation against a single row's PayTargetWeek value. Comparing aggregates against single rows does not usually work like you want or expect. Is PayTargetWeek the same value for every row that PayTotal is being summed on? Like, a single row of data has an individual PayTotal for a day or person or something but then it also has a wider PayTargetWeek value, that's not the same granularity? You can get around that by averaging your PayTargetWeek value in the denominator (assuming different granularities)
Also, you are missing something in your second comparison. Each comparison needs two values. Your "<= .05" comparison lacks the first value. The aggregation can't carry over. You'll have to compute that aggregation fully in each comparison.
In addition, there might be values between -.05 and -.049, or .05 and .051, so your would need to adjust the operators to leave no gaps. This won't make your beast mode validate, but it makes the results more usable.
Try this and see what happens:
case
when sum(`PayTotal`) / AVG(`PayTargetWeek`) <= -.05 then 'Under Target'
when sum(`PayTotal`) / AVG(`PayTargetWeek`) > -.05 and sum(`PayTotal`) / AVG(`PayTargetWeek`) <= .05 then 'On Target'
when sum(`PayTotal`) / AVG(`PayTargetWeek`) > .05 then 'Above Target'
else 'Not Sure'
endAaron
MajorDomo @ Merit Medical
**Say "Thanks" by clicking the heart in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0 -
By the time I opened this thread, SUM(`PayTotal`) was just a troubleshooting-itteration of the case() statement I was trying to make work.
I took your suggestion and modified it slightly to:
case
when `PayTotal` / `PayTargetWeek` <= -.05 then 'Under Target'
when `PayTotal` / `PayTargetWeek` > -.05 and `PayTotal` / `PayTargetWeek` <= .05 then 'On Target'
when `PayTotal` / `PayTargetWeek` > .05 then 'Above Target'
else 'Not Sure'
endI did this becuase ultimately I didn't need to SUM(`PayTotal`). I removed the AVG() from PayTargetWeek as well.
In the end, the error that was causing the BeastMode to fail validation was the second evalaution in the case, "when `PayTotal` / `PayTargetWeek` > -.05 and `PayTotal` / `PayTargetWeek` <= .05 then 'On Target' ". Once I added this, Validation Passed.
Thank you all for the assist and explanations.1
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 296 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 614 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 729 Beast Mode
- 53 App Studio
- 40 Variables
- 677 Automate
- 173 Apps
- 451 APIs & Domo Developer
- 45 Workflows
- 8 DomoAI
- 34 Predict
- 14 Jupyter Workspaces
- 20 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 121 Manage
- 118 Governance & Security
- Domo Community Gallery
- 32 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive