Why is this not working

domoexpert
Member
case when Sales/Volume
= 'Sales' then case when YEAR(`Datestamp`) = YEAR(CURDATE()) -2 then CONCAT(ROUND(SUM(Sales_USD
)/1000000, 0), 'M') END
0
Best Answer
-
@domoexpert You are likely getting an error because of the second "case when" in your forumla. Case statements must follow this format:
case when ___ then ___ when ___ then ___ … else ___ — this is optional end
I also recommend putting the case inside the sum and formatting functions. Here is what that should look like:
concat(round(sum(case when `Sales/Volume` = 'Sales' and YEAR(`Datestamp`) = YEAR(CURDATE()) - 2 then `Sales_USD` else 0 end)/1000000,0),'M')
1
Answers
-
@domoexpert You are likely getting an error because of the second "case when" in your forumla. Case statements must follow this format:
case when ___ then ___ when ___ then ___ … else ___ — this is optional end
I also recommend putting the case inside the sum and formatting functions. Here is what that should look like:
concat(round(sum(case when `Sales/Volume` = 'Sales' and YEAR(`Datestamp`) = YEAR(CURDATE()) - 2 then `Sales_USD` else 0 end)/1000000,0),'M')
1
Categories
- All Categories
- 1.2K Product Ideas
- 1.2K Ideas Exchange
- 1.3K Connect
- 1.1K Connectors
- 273 Workbench
- 1 Cloud Amplifier
- 3 Federated
- 2.7K Transform
- 78 SQL DataFlows
- 525 Datasets
- 2.1K Magic ETL
- 2.9K Visualize
- 2.2K Charting
- 434 Beast Mode
- 22 Variables
- 510 Automate
- 114 Apps
- 388 APIs & Domo Developer
- 8 Workflows
- 26 Predict
- 10 Jupyter Workspaces
- 16 R & Python Tiles
- 332 Distribute
- 77 Domo Everywhere
- 255 Scheduled Reports
- 66 Manage
- 66 Governance & Security
- 1 Product Release Questions
- Community Forums
- 40 Getting Started
- 26 Community Member Introductions
- 68 Community Announcements
- 4.8K Archive