IF(AND or IF(OR formula for 3 variables.
Hello - I am trying to create a formula using "Less Than", Greater Than", and "Less than or Equal" to symbols to evaluate a Score column and in the Severity Column set the Severity to Low, Medium, or High dependent on the score in the Score column.
Above is what I am trying to recreate in the formula. I started off using =IF(AND but perhaps I should use =IF(OR
This is the formula as I currently have it. It comes back as unparseable.
=IF(AND([Impact x Probability Score]@row ≤ "5"), Low, IF(AND([Impact x Probability Score]@row > "5" ≤ "15"), Medium, IF(AND([Impact x Probability Score]@row ≥ "15"), High)))
Answers
-
Once you have checked an item for a criteria, you no longer have to keep checking it.
=if(score@row <= 5, "Low", if(score@row <= 14, "Medium","High"
Quotes are for "text", not numbers. Unless you formatted your numbers as text, but then ranges won't work.
-
@L_123 Thank you - you put me on the right path.
This seems to work: =IF([Impact x Probability Score]@row <= 5, "Low", IF([Impact x Probability Score]@row <= 15, "Medium", IF([Impact x Probability Score]@row > 15, "High")))
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!