Calculating Differences based on the Value of a Column
I'm trying to solve a problem where I want to compare the average of two columns based on the value of another column. A simplified version of my data table looks something like this:
Score A | Score B | Score C | Survey Type
10 | 20 |19 | pre
14 | 26 |23 | post
7 | 6 |8 | pre
10 | 10 |12 | post
I want to calculate the percentage change for each score column (A, B, C) for "pre" surveys vs. "post" surveys based on the Survey Type column.
I already have the averages of each score/survey type calculated using beast modes and filters based on the survey type, but I don't have a way to calculate the difference.
Would this be something I could do with ranking and windowing in the ETL?
Best Answer
-
Here is what the beastmode would look like for column A % change between pre and post:
(AVG(CASE WHEN
Survey Type
= 'post' THENScore A
END) -
AVG(CASE WHENSurvey Type
= 'pre' THENScore A
END)) /
AVG(CASE WHENSurvey Type
= 'pre' THENScore A
END)You can copy and paste this for Score B and C - just replace Score A with Score B and Score C respectively.
If I solved your problem, please select "yes" above
1
Answers
-
Here is what the beastmode would look like for column A % change between pre and post:
(AVG(CASE WHEN
Survey Type
= 'post' THENScore A
END) -
AVG(CASE WHENSurvey Type
= 'pre' THENScore A
END)) /
AVG(CASE WHENSurvey Type
= 'pre' THENScore A
END)You can copy and paste this for Score B and C - just replace Score A with Score B and Score C respectively.
If I solved your problem, please select "yes" above
1 -
Thanks for your help with this, @ColemenWilson I was making the mistake of not averaging each case statement individually. I'll give this a shot and let you know how it goes.
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
- 753 Beast Mode
- 61 App Studio
- 41 Variables
- 692 Automate
- 177 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