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.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 737 Beast Mode
- 56 App Studio
- 40 Variables
- 684 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 46 Workflows
- 10 DomoAI
- 35 Predict
- 14 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 123 Manage
- 120 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive