how do I wright the =if for this

I have a call audit sheet were 12 questions total a percentage in a column call marks i now need the answer in mark to show fail pass or excellent. and highlighting as well if possible.
0 to 69 being fail (showing word and highlighted)
70 to 85 being pass (showing word and highlighted)
85 to 100 being excellent (showing word and highlighted)
Answers
-
Hi @MATAYLOR ,
This is really 2 things:
A nested IF formula for the results:
=IF(Mark@row < 0.7, "Fail", IF(Mark@row < 0.85, "Pass", IF(Mark@row >= 0.85, "Excellent")))
This is assuming your Mark column is a decimal. If not, change the values by 2 decimal places upwards (e.g. 0.7 becomes 70).
For the highlighting you can then use conditional formatting based on the result:
You can tailor the colours and cells to taste (making it highlight the row instead, for example).
This should give you something like the below:
The % will sometimes be a bit misleading if you leave it only 2 decimal places (for example, 84.9% will display as 85% in "Mark", but the result & formatting will work correctly from the actual value, not the displayed one.
Hope this helps!
-
Nick Korna ✭✭✭✭ thank you so much that's excellent
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 515 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!