RYGB Lights Not Changing with Dates
I am not sure why my lights wont change based on the dates:
=IF([Original Due Date]@row < TODAY(14), "Yellow", IF([Original Due Date]@row < TODAY(7), "Blue", IF([Revised Due Date]@row > [Original Due Date]@row, "Red")))
Would like:
Yellow: <14 days from today
Blue: <7 days from today
Red: Revised Date < Original Date
Tags:
Answers
-
Hi Robert,
I think because the 14 days scenario goes first in the IF formula, so it will run the first scenario first.
You can try this:
=IF(AND([Original Due Date]@row >= TODAY(), [Original Due Date]@row <= TODAY(7)), "Blue", IF([Original Due Date]@row < TODAY(14), "Yellow", IF([Revised Due Date]@row > [Original Due Date]@row, "Red")))
Hope this helps :)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.8K Get Help
- 376 Global Discussions
- 207 Industry Talk
- 440 Announcements
- 4.5K Ideas & Feature Requests
- 139 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 284 Events
- 33 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!