Balls Changing Colors

Hello,
Why is the signal status color column populating a color when I have nothing in the value column? How do I stop this?
My current formula is
=IF(Value@row >= 90, "Green", IF(Value@row <= 84, "Red", IF(Value@row < 90, "Yellow")))
Thanks!!
Best Answer
-
The blank cells are likely returning true as being less than or equal to 84… treated as 0. Try this:
=IF(ISBLANK(Value@row), "", IF(Value@row >= 90, "Green", IF(Value@row <= 84, "Red", IF(Value@row < 90, "Yellow"))))
Answers
-
The blank cells are likely returning true as being less than or equal to 84… treated as 0. Try this:
=IF(ISBLANK(Value@row), "", IF(Value@row >= 90, "Green", IF(Value@row <= 84, "Red", IF(Value@row < 90, "Yellow"))))
-
Worked like a charm!! Thank you!!!!
-
Happy to help!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 450 Global Discussions
- 155 Industry Talk
- 505 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!