Why doesn't my formula work?
I have created a sheet using the Risk Assessment Matrix template as a guide. I want a formula that auto populates the risk rating based on likelihood and severity.
=IF(AND(OR(Likelihood@row = "Possible", Likelihood@row = "Unlikely", Likelihood@row = "Rare"), Severity@row = "Minimal", Severity@row = "Minor"), "Low", IF(AND(OR(Likelihood@row = "Likely", Likelihood@row = "Possible", Likelihood@row = "Unlikely", Likelihood@row = "Rare"), Severity@row = "Minimal", Severity@row = "Minor", Severity@row = "Moderate"), "Medium", IF(AND(OR(Likelihood@row = "Almost Certain", Likelihood@row = "Likely", Likelihood@row = "Possible", Likelihood@row = "Unlikely", Likelihood@row = "Rare"), Severity@row = "Minimal", Severity@row = "Minor"), "High", "Extreme")))
this is the formula that I have tried and it just returns everything as Extreme
I think there is an issue with the severity having more than one option. I am making this assumption on the basis of the template formula having multiple likelihood options and only one severity option. I tried taking out the multiple severity options and then the formula worked so I assume I have to put something in to recognise that the severity can be either option I just don't understand what. Everything I have tried comes up unparseable!
Happy for any advice.
Regards,
Robyn
Best Answers
-
Hi @Robyn Scott
I had a look and I think part of the problem is there is an OR missing and you are duplicating the combinations.
=IF(AND(OR(Severity@row = "Minimal", Severity@row = "Minor"),
OR(Likelihood@row = "Possible", Likelihood@row = "Rare", Likelihood@row = "Unlikely")),
"Low", "Extreme"
is the basic formula for the first set of possibilities
For the one for Medium you have written this
IF(AND(OR(Likelihood@row = "Likely", Likelihood@row = "Possible", Likelihood@row = "Unlikely", Likelihood@row = "Rare"),
Severity@row = "Minimal", Severity@row = "Minor", Severity@row = "Moderate"), "Medium",
Hope that helps
ATB
Purnima
Purnima Gore
Cierr Limited
Your Time is Important, you want to Stay on Track, We can help you use the Right Tools
-
Thank you so much. It works!
Answers
-
Hi @Robyn Scott
I had a look and I think part of the problem is there is an OR missing and you are duplicating the combinations.
=IF(AND(OR(Severity@row = "Minimal", Severity@row = "Minor"),
OR(Likelihood@row = "Possible", Likelihood@row = "Rare", Likelihood@row = "Unlikely")),
"Low", "Extreme"
is the basic formula for the first set of possibilities
For the one for Medium you have written this
IF(AND(OR(Likelihood@row = "Likely", Likelihood@row = "Possible", Likelihood@row = "Unlikely", Likelihood@row = "Rare"),
Severity@row = "Minimal", Severity@row = "Minor", Severity@row = "Moderate"), "Medium",
Hope that helps
ATB
Purnima
Purnima Gore
Cierr Limited
Your Time is Important, you want to Stay on Track, We can help you use the Right Tools
-
Thank you so much. It works!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 58 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!