Hi All, I’ve been searching and trying different formulas for a while, and wondered if someone could help me?
I’m creating a RAID log where it will capture all risks and score them, depending on the values people have selected for the severity of the risk and likelihood (I have set these two columns up as select fields, so users have options to pick from).
I’d like the risk score column to update to a number depending on what is entered into the severity of risk and the likelihood column (a risk matrix).
For example if someone were to pick “High” as the severity of risk and “Likely” as the Likelihood the risk score would automatically write 16.
If someone were to pick “Low” for the severity of risk and then “Never” as the likelihood it would automatically write 2.
There are 25 different combinations.
I’ve managed to get this to work so far:
IF(AND({Severity of risk} = “Low”, OR(Likelihood = “Never”)), “2”)
But that is just for one of 25 possible outcomes. Everything else I’ve tried errors. Any suggestions welcome :slightly_smiling_face: