Question on acceptance rate calc

Hello, I am trying to calculate total accpetance rate of the students.
I have 2 calculated fields
Accepted Students: case when (acceptance_flag = 1) then count(students)
Total Students: count(students)
I am having a table format and calculation for acceptance rate:
(case when (acceptance_flag = 1) then count(students) )/count(students) * 100
With this, I always get 100% for the every record that is true. Please help with the calculation that needs to be used.
Best Answer
-
Try this:
COUNT(CASE WHEN `acceptance_flag` = 1 THEN `students` END) / COUNT(`students`) * 100If I solved your problem, please select "yes" above
0
Answers
-
Try this:
COUNT(CASE WHEN `acceptance_flag` = 1 THEN `students` END) / COUNT(`students`) * 100If I solved your problem, please select "yes" above
0 -
Thank you @ColemenWilson . As suggested by you, I tried this -
COUNT(CASE WHEN Acceptance_flag= 1 THEN
Students
END))/COUNT(Students
))* 100 It still gives me as 100% for every student which is true. Else 0%. Not sure if I am missing anything.It is not taking the total into consideration in denominator. I have done this in Tableau using LOD, just not sure on how to get this to work in Domo. Thanks again for looking into this.
0 -
What is the students field? Is that the number of students, or is it some other value? Is it numeric or text?
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0 -
What does the data for `Students` look like? Is it a student id? Or is it a number that represents the number of students? Also I noticed missing (or extra) parentheses in your beastmode in your most recent comment - so double check that.
If I solved your problem, please select "yes" above
0 -
@GrantSmith @ColemenWilson Thank you for your response
The original datatype is text. But then in beast mode I am trying to do count() which becomes numeric.
Yes, the missing parentheses was a typo above. In Domo, I did not have any compilation errors. Thank you!
0 -
Sorry for the confusion. I will use a KPI box with the above calculation. It works great. Thank you both.
1
Categories
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Connect
- 1.3K Connectors
- 309 Workbench
- 7 Cloud Amplifier
- 10 Federated
- Transform
- 663 Datasets
- 119 SQL DataFlows
- 2.3K Magic ETL
- 823 Beast Mode
- Visualize
- 2.6K Charting
- 86 App Studio
- 46 Variables
- Automate
- 193 Apps
- 483 APIs & Domo Developer
- 87 Workflows
- 23 Code Engine
- AI and Machine Learning
- 23 AI Chat
- 4 AI Projects and Models
- 18 Jupyter Workspaces
- Distribute
- 117 Domo Everywhere
- 283 Scheduled Reports
- 11 Software Integrations
- Manage
- 143 Governance & Security
- 11 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 116 Community Announcements
- 5K Archive