IF formula for RYG balls
Hi I am trying to make a formula that states:
If it is 14 days past the TBF date field, and the Reported date field is blank, make the ball Red.
If it is 7 days past the TBF date field, and the Reported date field is blank, make the ball Yellow.
If the Reported date field is NOT blank, make the ball Green.
Nothing I try seems to work - I'm not the best with If & Today statements, and I have a feeling I need both.
Best Answer
-
Try something like this...
=IF([Reported Date]@row <> "", "Green", IF(TODAY() >= [TBF Date]@row + 14, "Red", IF(TODAY() >= [TBF Date]@row + 7, "Yellow")))
Answers
-
Try something like this...
=IF([Reported Date]@row <> "", "Green", IF(TODAY() >= [TBF Date]@row + 14, "Red", IF(TODAY() >= [TBF Date]@row + 7, "Yellow")))
-
that worked perfectly, thank you!
-
Happy to help! 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 430 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!