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!
-
That works thank you :)
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
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!