Formulas for an automatically generated Risk Level
Hi
I'm am trying to replicate the below formulas in smartsheet so it can automatically calculate the Risk Level with existing controls and with additional mitigation. The below formulas are currently being used in excel:
Formula for existing controls Risk Level:
=IFERROR(VLOOKUP(H7&I7,LikeliConseq, 2, FALSE),"")
Formula for mitigation Risk Level:
=IF(AND(L7="",M7=""),J7,VLOOKUP(L7&M7,LikeliConseq, 2, FALSE))
I would like the end result to include the Risk Level in word format (e.g. Extreme, Medium, Low etc.) and the corresponding colour as per 'Risk Level Capture' attached.
Any advice?
Thanks
Comments
-
You would need to set your table up so that the Consequences are going across the top row above the table. Something like this (column names in bold):
.
TableA TableB TableC TableD TableE
Minor Moderate Major Severe
Certain
Likely
Possible
Unlikely
Rare
.
Of course you would fill in the rest of your table with the ratings.
From there you would use something along the lines of this:
=INDEX($TableB$2:$TableE$6, MATCH(Likelihood@row, $TableA$2:$TableA$6, 0), MATCH(Consequence@row, $TableB$1:$TableE$1, 0))
.
This leverages the MATCH function to give you a row number based on the likelihood and a column number based on the consequence to populate the appropriate fields in the INDEX function.
EDIT:
I forgot the color part...
You would simply use conditional formatting to get the colors to pull through.
-
Thanks very much Paul!
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 137 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!