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
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!