Hi! I am trying to create a risk register template and would like to have the columns: 'Impact', 'Likelihood', and 'Risk Score'. The Impact and Likelihood columns will be user selected input from a drop down menu, where the options are 'Low', 'Medium', and 'High'. I would like the 'Risk Score' column to then populate based on the input in the Impact and Likelihood columns. This then becomes a matrix with 9 potential outcomes. Examples: (where Impact x Likelihood = Score), Low x Low = Low; Low x Medium = Low; Low x High = Medium; Medium x Low = Medium; Medium x Medium = Medium; and so on.
I've made it as far as writing an IF statement that gives me 'Low x Low = Low' [=IF(AND(Impact@row = "Low", Likelihood@row = "Low"), "Low")]. I've not been successful at adding any additional outputs to the equation.
Please let me know where I am going wrong! Or let me know if there is a better way to do this than using an IF equation.
Thanks so much, Karen