Beast mode to kill div0 errors
Hi, can anyone tell me why If my "A" code works, and my "B" CASE WHEN... THEN 0 ELSE 2 END code works, why can't I substitute code "A" for "2" in code B? I'm trying to kill divide by zero errors in a beast mode.
--A
SUM(IFNULL(`qty sold instock`,0))/SUM(IFNULL(`qty found`,0))
--B
(CASE WHEN (IFNULL(`qty found`,0)) = 0 THEN 0 ELSE 2 END)
--B ELSE A
(CASE WHEN (IFNULL(`qty found`,0)) = 0 THEN 0 ELSE (SUM(IFNULL(`qty sold instock`,0))/SUM(IFNULL(`qty found`,0))) END)
Thanks
Best Answers
-
You might need to provide some sample rows of your data. I took your final beast mode:
(CASE WHEN (IFNULL(`qty found`,0)) = 0 THEN 0 ELSE (SUM(IFNULL(`qty sold instock`,0))/SUM(IFNULL(`qty found`,0))) END)
And put together some sample rows with the same columns that look like this and beast mode calc worked.
**Check out my Domo Tips & Tricks Videos
**Make sure to any users posts that helped you.
**Please mark as accepted the ones who solved your issue.0 -
I thought it should work! There must be some NULL or ZERO scenario I failed to address. This code considering all NULL and ZERO possibilities does work.
CASE
WHEN (SUM(IFNULL(`qty sold instock`,0)) + SUM(IFNULL(`qty found`,0))) = 0 THEN 0
WHEN (SUM(IFNULL(`qty found`,0))) = 0 THEN 0
WHEN (SUM(IFNULL(`qty sold instock`,0))) = 0 THEN 0
ELSE (SUM(`qty sold instock`)*1) / SUM(`qty found`)
END
Thanks!
0
Answers
-
I found another way to accomplish this with more WHEN statements. Just curious why the B ELSE A does not work.
0 -
You might need to provide some sample rows of your data. I took your final beast mode:
(CASE WHEN (IFNULL(`qty found`,0)) = 0 THEN 0 ELSE (SUM(IFNULL(`qty sold instock`,0))/SUM(IFNULL(`qty found`,0))) END)
And put together some sample rows with the same columns that look like this and beast mode calc worked.
**Check out my Domo Tips & Tricks Videos
**Make sure to any users posts that helped you.
**Please mark as accepted the ones who solved your issue.0 -
I thought it should work! There must be some NULL or ZERO scenario I failed to address. This code considering all NULL and ZERO possibilities does work.
CASE
WHEN (SUM(IFNULL(`qty sold instock`,0)) + SUM(IFNULL(`qty found`,0))) = 0 THEN 0
WHEN (SUM(IFNULL(`qty found`,0))) = 0 THEN 0
WHEN (SUM(IFNULL(`qty sold instock`,0))) = 0 THEN 0
ELSE (SUM(`qty sold instock`)*1) / SUM(`qty found`)
END
Thanks!
0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.6K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 2.9K Transform
- 102 SQL DataFlows
- 626 Datasets
- 2.2K Magic ETL
- 3.9K Visualize
- 2.5K Charting
- 755 Beast Mode
- 61 App Studio
- 41 Variables
- 693 Automate
- 178 Apps
- 456 APIs & Domo Developer
- 49 Workflows
- 10 DomoAI
- 38 Predict
- 16 Jupyter Workspaces
- 22 R & Python Tiles
- 398 Distribute
- 115 Domo Everywhere
- 276 Scheduled Reports
- 7 Software Integrations
- 130 Manage
- 127 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 11 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 110 Community Announcements
- 4.8K Archive