Returning a PASS FAIL based on percentage score results
I am trying to return a Pass Fail text based on the percentage of a total score. I am creating an audit form and based on a final score (total points/available points). I am using the below formula but for some reason no matter what the score is, I am seeing a FAIL response. Score must be 90% or higher to pass.
=IF(AND(COUNTIFS([Final Score]@row, @cell > 0) = 1, SUM([Final Score]@row) >= 90), "PASS", IF(AND([Final Score]@row >= 90, [Final Score]@row >= 90), "PASS", "FAIL"))
When I change the last " > = 90" to a "< = 90", the score will change to Pass but will not change again if the score drops below 90, it remains Pass.
If someone also knows how I can create an auto fail response in the same column based on a text response, example: Question 3a, Response = NO; Score = Auto Fail. So wanted to have the "Final Rating" column read FAIL based on question response.
Answers
-
I could understand incorrectly but I think this should work if it is simply you need 90% or above to pass and there is not other manditory conditions.
=IF([Final Score]@row>=.90,"Pass",if([Final Score]<.90,"Fail","Error"))
or maybe even…
=IF([Final Score]@row>=.90,"Pass", "Fail")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 450 Global Discussions
- 155 Industry Talk
- 505 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!