Tableau formula Conversion to domo question
Hey all, I am trying to create a formulas in my ETL but keeps giving a syntex error.
I'm trying to translate this tableau formula:
if ([Prior 5 Days Avg]) > 0 and sum([Current Day]) > 0 Then
(sum([Current Day]) - ([Prior 5 Days Avg]))/([Prior 5 Days Avg])
elseif sum([Current Day]) = 0 then -.99
else .99
end
Into a DOMO formula:
CASE
WHEN (`Average 5 Day Usage`) > 0 AND SUM(`Current Day Usage *`) > 0
THEN (Sum(`Current Day Usage *`) - (`Average 5 Day Usage`))/(`Average 5 Day Usage`)
WHEN Sum(`Current Day Usage *`) = 0
THEN -0.99
ELSE 0.99
END
But DOMO does not seem to like my above formula.
Any thoughts?
Best Answer
-
@kacy i'm assuming you've created a dataset with 'current day' and average 5 day usage' as columns. you can do that, but I'm not sure I'd recommend this approach because you'll have tons of limited use datasets that only work for one visualization, and eventually it'll become a nightmare to maintain.
but setting that aside, Domo is built on SQL. So you have to convert your query into proper SQL syntax.
looks like you had an extra asterix. if that asterix is intentional, take it out of your dataset, it's unwise to use characters that are reserved for math in column names.
WHEN (`Average 5 Day Usage`) > 0 AND SUM(`Current Day Usage *`) > 0
also you have a problem with your parenthesis / your understanding of aggregation. you can't have half of your formula operate on a SUM and the other half without.
(Sum(`Current Day Usage *`) - (`Average 5 Day Usage`))/(`Average 5 Day Usage`)
you can't do this. Sum(`Current Day Usage *`) this is an aggregation, which means all other columns referred to in your dataset must be aggregated as well.
EITHER
Sum((`Current Day Usage *` - `Average 5 Day Usage`)/ `Average 5 Day Usage`)
OR
(Sum(`Current Day Usage *`) - SUM(`Average 5 Day Usage`))/ sum( `Average 5 Day Usage`)
Jae Wilson
Check out my 🎥 Domo Training YouTube Channel 👨💻
**Say "Thanks" by clicking the ❤️ in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0
Answers
-
@kacy i'm assuming you've created a dataset with 'current day' and average 5 day usage' as columns. you can do that, but I'm not sure I'd recommend this approach because you'll have tons of limited use datasets that only work for one visualization, and eventually it'll become a nightmare to maintain.
but setting that aside, Domo is built on SQL. So you have to convert your query into proper SQL syntax.
looks like you had an extra asterix. if that asterix is intentional, take it out of your dataset, it's unwise to use characters that are reserved for math in column names.
WHEN (`Average 5 Day Usage`) > 0 AND SUM(`Current Day Usage *`) > 0
also you have a problem with your parenthesis / your understanding of aggregation. you can't have half of your formula operate on a SUM and the other half without.
(Sum(`Current Day Usage *`) - (`Average 5 Day Usage`))/(`Average 5 Day Usage`)
you can't do this. Sum(`Current Day Usage *`) this is an aggregation, which means all other columns referred to in your dataset must be aggregated as well.
EITHER
Sum((`Current Day Usage *` - `Average 5 Day Usage`)/ `Average 5 Day Usage`)
OR
(Sum(`Current Day Usage *`) - SUM(`Average 5 Day Usage`))/ sum( `Average 5 Day Usage`)
Jae Wilson
Check out my 🎥 Domo Training YouTube Channel 👨💻
**Say "Thanks" by clicking the ❤️ in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0 -
Thank you! Thanks for the explanation as well that was very helpful!
0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 297 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