Cell won't return to blank when values are deleted
So I have this issue where even though the formula instructs the cell to blank, however when after I delete the probability and impact numbers the cell in the Severity field will not return to blank but reverts to Low.
Description of the formula:
- Blank if probability or impact level is empty.
- "Low" if the product is less than 8.
- "Medium" if the product is less than 15.
- "Serious" if the product is less than 20.
- "Critical" if none of the above conditions are met.
=IF(OR([Current Probability]@row = " ", [Current Impact Level]@row = " "), " ", IF([Current Probability]@row * [Current Impact Level]@row < 8, "Low", IF([Current Probability]@row * [Current Impact Level]@row < 15, "Medium", IF([Current Probability]@row * [Current Impact Level]@row < 20, "Serious", "Critical"))))
Do I need to add something?
Answers
-
Take out the space between the " " because there is no space in your cells. That is why it is moving on in the formula to the second IF statement.
Michelle Choate
michelle.choate@outlook.com
Always happy to walk through any project you need help with! Book time with me here: https://calendly.com/michelle-choate
-
That works thank you :)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.6K Get Help
- 472 Global Discussions
- 200 Use Cases
- 513 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 81 Community Job Board
- 520 Show & Tell
- 35 Member Spotlight
- 3 SmartStories
- 307 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!