I am trying to plug this matrix into a smartsheet:
I'm pretty new to formulas but I am trying to construct an IF(AND formula. Below is what I have constructed.
=IF(AND([Impact]@row "Low 1" , [Probability]@row "Low 1" , "1"),
IF(AND([Impact]@row "Low 1" , [Probability]@row "Medium 3" , "3"),
IF(AND([Impact]@row "Low 1" , [Probability]@row "High 5" , "5"),
IF(AND([Impact]@row "Medium 3" , [Probability]@row "Low 1" , "3"),
IF(AND([Impact]@row "Medium 3" , [Probability]@row "Medium 3" , "9"),
IF(AND([Impact]@row "Medium 3" , [Probability]@row "High 5" , "15"),
IF(AND([Impact]@row "High 5" , [Probability]@row "Low 1" , "5"),
IF(AND([Impact]@row "High 5" , [Probability]@row "Medium 3" , "15"),
IF(AND([Impact]@row "High 5" , [Probability]@row "High 5" , "25"),
It basically reads as IF the IMPACT column is A and Probability column is B THEN the answer is X.
But what I have above comes out as unparsable in smartsheet ... I don't know how to format it properly.
Later on I plan to add a Severity column that says if Score is less than 5 it is "LOW" IF Score is Greater than 5 and Less than 15 it is "Medium" If Score is greater than 15 it is "High".
Any suggestions?
Thanks