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
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 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!