Risk Score Formula
Hi Im looking for some help please.
In for my Project Raid Log I would like a formula based on risk score to show the following symbols
Risk score of 25 - 20 - Black
Risk score of 19 -14 - Red
Risk Score 13 - 08 - Amber/Yellow
Risk Score of 0 -7 - Green
Thanks in advanced.
Answers
-
Hi @Karl86,
A nested IF should take care of this for you:
=IF([Risk score]@row >= 20, "Gray", IF([Risk score]@row >= 14, "Red", IF([Risk score]@row >= 8, "Yellow", "Green")))
Sample output:
I've used "Gray" here as I can't see a symbol set with black, but if needs be just substitute the relevant value in place in the formula.
Hope this helps, but if I've misunderstood anything or you've any problems/questions then just let us know!
-
Hi Nick,
This is perfect thank you for this. Sorry forgot to add if we can have formula if risk score is blank can we show as N/A please?
Many thanks
-
Thanks @Nick Korna
This is perfect thank you for this. Sorry forgot to add if we can have formula if risk score is blank can we show as N/A please?
-
Hi @Karl86,
Amended slightly to give N/A if score is blank (but another cell in the row is filled in):
=IF([Risk score]@row >= 20, "Gray", IF([Risk score]@row >= 14, "Red", IF([Risk score]@row >= 8, "Yellow", IF([Risk score]@row <> "", "Green", "N/A"))))
If nothing else in the row has anything in, then this will be blank.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.7K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 509 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!