Probability and Impact Matrix (5 x 5)

Hello,
I have three columns. They are: Probability, Impact, and Risk Score.
The values for each column appear below:
Probability
Almost Certain (90% or higher)
High (70% to 90%)
Moderate (40% to 70%)
Low (20% to 40%)
Very Low (less than 20%)
Impact
Very High
High
Medium
Low
Very Low
Risk Score
Conditional formatting rules were created to populate the color of the cells for Risk Score.
If Probability is โAlmost Certain (90% or higher)โ and Impact is โVery Highโ then apply this format โDARK REDโ to the Risk Score.
If Probability is โAlmost Certain (90% or higher)โ and Impact is โHighโ then apply this format โDARK REDโ to the Risk Score.
If Probability is โAlmost Certain (90% or higher)โ and Impact is โMediumโ then apply this format โREDโ to the Risk Score.
If Probability is โAlmost Certain (90% or higher)โ and Impact is โLowโ then apply this format โORANGEโ to the Risk Score.
If Probability is โAlmost Certain (90% or higher)โ and Impact is โVery Lowโ then apply this format โYELLOWโ to the Risk Score.
If Probability is โHigh (70% to 90%)โ and Impact is โVery Highโ then apply this format โDARK REDโ to the Risk Score.
If Probability is โHigh (70% to 90%)โ and Impact is โHighโ then apply this format โREDโ to the Risk Score.
If Probability is โHigh (70% to 90%)โ and Impact is โMediumโ then apply this format โORANGEโ to the Risk Score.
If Probability is โHigh (70% to 90%)โ and Impact is โLowโ then apply this format โYELLOWโ to the Risk Score.
If Probability is โHigh (70% to 90%)โ and Impact is โVery Lowโ then apply this format โYELLOWโ to the Risk Score.
If Probability is โModerate (40% to 70%)โ and Impact is โVery Highโ then apply this format โDARK REDโ to the Risk Score.
If Probability is โModerate (40% to 70%)โ and Impact is โHighโ then apply this format โORANGEโ to the Risk Score.
If Probability is โModerate (40% to 70%)โ and Impact is โMediumโ then apply this format โYELLOWโ to the Risk Score.
If Probability is โModerate (40% to 70%)โ and Impact is โLowโ then apply this format โYELLOWโ to the Risk Score.
If Probability is โModerate (40% to 70%)โ and Impact is โVery Lowโ then apply this format โGREENโ to the Risk Score.
If Probability is โLow (20% to 40%)โ and Impact is โVery Highโ then apply this format โORANGEโ to the Risk Score.
If Probability is โLow (20% to 40%)โ and Impact is โHighโ then apply this format โYELLOWโ to the Risk Score.
If Probability is โLow (20% to 40%)โ and Impact is โMediumโ then apply this format โYELLOWโ to the Risk Score.
If Probability is โLow (20% to 40%)โ and Impact is โLowโ then apply this format โGREENโ to the Risk Score.
If Probability is โLow (20% to 40%)โ and Impact is โVery Lowโ then apply this format โGREENโ to the Risk Score.
If Probability is โVery Low (less than 20%โ and Impact is โVery Highโ then apply this format โYELLOWโ to the Risk Score.
If Probability is โVery Low (less than 20%โ and Impact is โHighโ then apply this format โYELLOWโ to the Risk Score.
If Probability is โVery Low (less than 20%โ and Impact is โMediumโ then apply this format โGREENโ to the Risk Score.
If Probability is โVery Low (less than 20%โ and Impact is โLowโ then apply this format โGREENโ to the Risk Score.
If Probability is โVery Low (less than 20%โ and Impact is โVery Lowโ then apply this format โGREENโ to the Risk Score.
All of the conditional formatting rules works fine.
GOAL: I want to display the "text" shown below in the Risk Score cell (in addition to the colors that were applied with conditional formatting).
Dark Red = "Severe"
Red = "Major"
Orange = "High"
Yellow = "Medium"
Green = "Low"
PROBLEM STATEMENT: I receive the #UNPARSEABLE error message when attempting to create a nested IF statement based on the following logic.
If Probability = โAlmost Certain (90% or higher)โ AND impact = โVery Highโ, โSevereโ
If Probability = โAlmost Certain (90% or higher)โ AND impact = โHighโ, โSevereโ
If Probability = โAlmost Certain (90% or higher)โ AND impact = โMediumโ, โMajorโ
If Probability = โAlmost Certain (90% or higher)โ AND impact = โLowโ, โHighโ
If Probability = โAlmost Certain (90% or higher)โ AND impact = โVery Lowโ, โMediumโ
ย
If Probability = โHigh (70% to 90%)โ AND impact = โVery Highโ, โSevereโ
If Probability = โHigh (70% to 90%)โ AND impact = โHighโ, โMajorโ
If Probability = โHigh (70% to 90%)โ AND impact = โMediumโ, โHighโ
If Probability = โHigh (70% to 90%)โ AND impact = โLowโ, โMediumโ
If Probability = โHigh (70% to 90%)โ AND impact = โVery Lowโ, โMediumโ
ย
If Probability = โModerate (40% to 70%)โ AND impact = โVery Highโ, โMajorโ
If Probability = โModerate (40% to 70%)โ AND impact = โHighโ, โHighโ
If Probability = โModerate (40% to 70%)โ AND impact = โMediumโ, โMediumโ
If Probability = โModerate (40% to 70%)โ AND impact = โLowโ, โMediumโ
If Probability = โModerate (40% to 70%)โ AND impact = โVery Lowโ, โLowโ
ย
If Probability = โLow (20% to 40%)โ AND impact = โVery Highโ, โHighโ
If Probability = โLow (20% to 40%)โ AND impact = โHighโ, โMediumโ
If Probability = โLow (20% to 40%)โ AND impact = โMediumโ, โMediumโ
If Probability = โLow (20% to 40%)โ AND impact = โLowโ, โLowโ
If Probability = โLow (20% to 40%)โ AND impact = โVery Lowโ, โLowโ
If Probability = โVery Low (less than 20%)โ AND impact = โVery Highโ, โMediumโ
If Probability = โVery Low (less than 20%)โ AND impact = โHighโ, โMediumโ
If Probability = โVery Low (less than 20%)โ AND impact = โMediumโ, โMediumโ
If Probability = โVery Low (less than 20%)โ AND impact = โLowโ, โLowโ
If Probability = โVery Low (less than 20%)โ AND impact = โVery Lowโ, โLowโ
Am I able to display "text" in the Risk Score cell (in addition to the colors that were applied with conditional formatting)?
If so, do you have any suggestions on how to solve this problem / structure the nested IF statement?
Thanks for your assistance.
Best Answers
-
Your syntax for using AND is off.
If Probability = โAlmost Certain (90% or higher)โ AND impact = โVery Highโ, โSevereโ
should be
IF(AND(Probability@row = "Almost Certain (90% or higher)", Impact@row = "Very High"), "Severe", IF(AND(................
You also have the wrong quotes in there. Notice how yours are slanted but mine are straight up and down? The slanted ones are called "smart quotes" which (ironically enough) are not recognized as valid characters in a Smartsheet formula. You will need to retype them directly in Smartsheet or in a text editor such as Notepad (not Word).
-
Thank you for your timely response!!! @paulnewcome Your guidance resolved the problem. It is appreciated.
Answers
-
Your syntax for using AND is off.
If Probability = โAlmost Certain (90% or higher)โ AND impact = โVery Highโ, โSevereโ
should be
IF(AND(Probability@row = "Almost Certain (90% or higher)", Impact@row = "Very High"), "Severe", IF(AND(................
You also have the wrong quotes in there. Notice how yours are slanted but mine are straight up and down? The slanted ones are called "smart quotes" which (ironically enough) are not recognized as valid characters in a Smartsheet formula. You will need to retype them directly in Smartsheet or in a text editor such as Notepad (not Word).
-
Thank you for your timely response!!! @paulnewcome Your guidance resolved the problem. It is appreciated.
Help Article Resources
Categories
Check out the Formula Handbook template!