"Health" Column Symbols
My Health Column Type is Balls
I need to set the ball colors like this:
Red if Due Date is before Today
Yellow if Due Date is Today
Green if Due Date is After Today
Blue if Status is not "Complete" "On Hold", Cancelled" or "Rejected"
This part works
=IF([Due Date]@row < TODAY(), "Red", IF([Due Date]@row = TODAY(), "Yellow", IF([Due Date]@row > TODAY(), "Green")))
I cant get the blue to work and I'm not sure how to add multiple values to the formula
=IF([Due Date]@row < TODAY(), "Red", IF([Due Date]@row = TODAY(), "Yellow", IF([Due Date]@row > TODAY(), "Green", IF(Status@row <> "Complete" OR "On Hold" OR , "Blue"))))
Best Answer
-
Try moving it to the start of the formula:
=IF(OR(Status@row = "Complete", Status@row = "On Hold"), "Blue", IF([Due Date]@row < TODAY(), "Red", IF([Due Date]@row = TODAY(), "Yellow", IF([Due Date]@row > TODAY(), "Green"))))
Answers
-
Try this:
=IF([Due Date]@row < TODAY(), "Red", IF([Due Date]@row = TODAY(), "Yellow", IF([Due Date]@row > TODAY(), "Green", IF(OR(Status@row <> "Complete", Status@row <> "On Hold"), "Blue"))))
-
Thanks Paul
I misspoke in my original post. I meant to say = rather than <>.
In any event, this does not fire the Blue part
=IF([Due Date]@row < TODAY(), "Red", IF([Due Date]@row = TODAY(), "Yellow", IF([Due Date]@row > TODAY(), "Green", IF(OR(Status@row = "Complete", Status@row = "On Hold"), "Blue"))))
This bit works on its own but not when included with the rest
=IF(OR(Status@row = "Complete", Status@row = "On Hold"), "Blue")
-
Try moving it to the start of the formula:
=IF(OR(Status@row = "Complete", Status@row = "On Hold"), "Blue", IF([Due Date]@row < TODAY(), "Red", IF([Due Date]@row = TODAY(), "Yellow", IF([Due Date]@row > TODAY(), "Green"))))
-
Ah.. That was it..
Thanks Paul
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 221 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!