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
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!