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.6K Connect
- 1.2K Connectors
- 302 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 2.9K Transform
- 104 SQL DataFlows
- 633 Datasets
- 2.2K Magic ETL
- 3.9K Visualize
- 2.5K Charting
- 760 Beast Mode
- 62 App Studio
- 42 Variables
- 699 Automate
- 181 Apps
- 457 APIs & Domo Developer
- 51 Workflows
- 10 DomoAI
- 38 Predict
- 16 Jupyter Workspaces
- 22 R & Python Tiles
- 401 Distribute
- 116 Domo Everywhere
- 277 Scheduled Reports
- 8 Software Integrations
- 130 Manage
- 127 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 111 Community Announcements
- 4.8K Archive