Hello,
I'm working on a risk assessment matrix with an Impact column with 5 options (e.g. Insignificant, Minor, Moderate, Major and Extreme) and a Likelihood column with 5 options (e.g. Rare, Unlikely, Possible, Likely, Almost certain). When selecting an option in the Impact column and then one in the Likelihood one, it should normally return one of the following Ratings: Very low, Low, Medium, High, Very high.
The formula I've written is the following:
=IF(AND(Likelihood16 = "Rare", Impact16 = "Insignificant"), "Very low", IF(Likelihood16 = "Rare", Impact16 = "Minor"), "Very low", IF(AND(OR(Likelihood16 = "Rare"), Impact16 = "Moderate"), "Low", IF(AND(OR(Likelihood16 = "Rare"), Impact16 = "Major"), "Medium", IF(AND(OR(Likelihood16 = "Rare"), Impact16 = "Extreme"), "Medium", IF(AND(OR(Likelihood16 = "Unlikely"), Impact16 = "Insignificant"), "Very low", IF(AND(OR(Likelihood16 = "Unlikely"), Impact16 = "Low"), "Minor", IF(AND(OR(Likelihood16 = "Unlikely"), Impact16 = "Medium"), "Moderate", IF(AND(OR(Likelihood16 = "Unlikely"), Impact16 = "Major"), "Medium", IF(AND(OR(Likelihood16 = "Unlikely"), Impact16 = "Extreme"), "High", IF(AND(OR(Likelihood16 = "Possible"), Impact16 = "Insignificant"), "Low", IF(AND(OR(Likelihood16 = "Possible"), Impact16 = "Minor"), "Medium", IF(AND(OR(Likelihood16 = "Possible"), Impact16 = "Moderate"), "Medium", IF(AND(OR(Likelihood16 = "Possible"), Impact16 = "Major"), "High", IF(AND(OR(Likelihood16 = "Possible"), Impact16 = "Extreme"), "High", IF(AND(OR(Likelihood16 = "Likely"), Impact16 = "Insignificant"), "Medium", IF(AND(OR(Likelihood16 = "Likely"), Impact16 = "Minor"), "Medium", IF(AND(OR(Likelihood16 = "Likely"), Impact16 = "Moderate"), "High", IF(AND(OR(Likelihood16 = "Likely"), Impact16 = "Major"), "High", IF(AND(OR(Likelihood16 = "Likely"), Impact16 = "Extreme"), "Very high", IF(AND(OR(Likelihood16 = "Almost certain"), Impact16 = "Insignificant"), "Medium", IF(AND(OR(Likelihood16 = "Almost certain"), Impact16 = "Minor"), "Medium", IF(AND(OR(Likelihood16 = "Almost certain"), Impact16 = "Moderate"), "High", IF(AND(OR(Likelihood16 = "Almost certain"), Impact16 = "Major"), "Very high", IF(AND(OR(Likelihood16 = "Almost certain"), Impact16 = "Extreme "), "Very high")))
and...it returns a blank...nothing...
The way I wrote the above formula is in expanding the one I've picked from another template but which has twice a Likelihood option when I only will have one:
=IF(AND(OR(Likelihood16 = "Rare", Likelihood16 = "Unlikely"), Impact16 = "Insignificant"), "Very low", IF(AND(OR(Likelihood16 = "Possible", Likelihood16 = "Likely"), Impact16 = "Minor"), "Medium", IF(AND(OR(Likelihood16 = "Almost certain", Likelihood16 = "Almost certain"), Impact16 = "Extreme"), "Very high")))
I've tried removing once the AND keeping the OR, removing the OR and keeping the AND, taking a walk to let some steam off, trying again without the AND and the OR, doing a few push-ups and moving some furniture to release some frustrations, tried again ensuring no extra space was hiding in some wrong place, to no avail...
If anyone could help, I'd be immensely grateful!