Beast Mode Syntax error
Hi, I would greatly appreciate some help with this beastmode.
The idea is to calculate what % of the remaining sales quota for the quarter each open deal per salesperson is. I want to divide the Open deal value by (Quota - Value of all Won deals)
100000--this is the quota, manual input
case when `Status` = 'Open' then (`Value` / (100000 - SUM(case when `Status` = 'Won' then `Value` else 0))) else 0 end
Thanks in advance!
Best Answer
-
Try this
sum(case when `Status` = 'Open' then `Value` Else 0 end)
/
(100000 - SUM(case when `Status` = 'Won' then `Value` else 0 end))
2
Answers
-
Try this
sum(case when `Status` = 'Open' then `Value` Else 0 end)
/
(100000 - SUM(case when `Status` = 'Won' then `Value` else 0 end))
2 -
And to be careful, though unlikely to happen, you can protect against "divide by zero" errors:
CASE
-- If denominator is zero, result is zero
WHEN (100000 - SUM(CASE WHEN `Status` = 'Won' THEN `Value` ELSE 0 END)) = 0 THEN 0
-- else, do the real calculation
ELSE
SUM(CASE WHEN `Status` = 'Open' THEN `Value`) ELSE 0 END)
/
(100000 - SUM(CASE WHEN `Status` = 'Won' THEN `Value` ELSE 0 END))
END
**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"1
Categories
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Connect
- 1.3K Connectors
- 309 Workbench
- 7 Cloud Amplifier
- 10 Federated
- Transform
- 666 Datasets
- 120 SQL DataFlows
- 2.3K Magic ETL
- 827 Beast Mode
- Visualize
- 2.6K Charting
- 90 App Studio
- 46 Variables
- Automate
- 198 Apps
- 489 APIs & Domo Developer
- 98 Workflows
- 24 Code Engine
- AI and Machine Learning
- 23 AI Chat
- 4 AI Projects and Models
- 18 Jupyter Workspaces
- Distribute
- 118 Domo Everywhere
- 284 Scheduled Reports
- 11 Software Integrations
- Manage
- 145 Governance & Security
- 13 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 117 Community Announcements
- 5K Archive