IF/And Formula to Change Symbols
I've been looking at this for a while and can't figure out what is going on -- turning to my Smartsheet community to point out what is likely very obvious!
I'm trying to get the status symbol to change as follows:
If =>100% green, if =>80% yellow, and if less than 80% Red. I'm having the trouble with the Yellow
Here's the formula I'm using
=IF([Column4]@row >= 1, "Green", IF([Column4]@row >= 0.8, "Yellow", "Red"))
Thanks in advance for your help!
Best Answer
-
@TolerDo Hi, try something like this instead =IF(NOT(ISBLANK([Column4]@row)), IF(AND([Column4]@row >= 80, [Column4]@row < 100), "Yellow", IF([Column4]@row = 100, "Green", "Red"))) The isn't blank part is because it shows as red when the cell is blank, but it can removed.
Answers
-
@TolerDo Hi, try something like this instead =IF(NOT(ISBLANK([Column4]@row)), IF(AND([Column4]@row >= 80, [Column4]@row < 100), "Yellow", IF([Column4]@row = 100, "Green", "Red"))) The isn't blank part is because it shows as red when the cell is blank, but it can removed.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.1K Get Help
- 352 Global Discussions
- 198 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 133 Brandfolder
- 127 Just for fun
- 127 Community Job Board
- 443 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!