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
- Customer Resources
- 66.6K Get Help
- 435 Global Discussions
- 152 Industry Talk
- 495 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 508 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!