Nested IF Statement with RYGB Balls
Hi, I'm trying to setup a nested IF statement to do the following:
If DONE is checked then change the Status to Blue.
If Due Date is more than 8 days out then make it Green.
If Due Date is 7 days or less then make it Yellow.
If Due Date is TODAY or in the past make it Red.
This is what I have so far but it is not working.
=IF(Done1 = 1, "Blue", IF([Due Date]1 <> =TODAY(-7), "Green", IF([Due Date]1 > TODAY(-8), "Yellow", IF([Due Date]1 >= TODAY(0), "Red"))))
Any help would be greatly appreciated.
Tags:
Comments
-
You’re almost there, but your calculations are just a little off. Try this:
=IF(Done1 = 1, "Blue", IF([Due Date]1 > TODAY(8), "Green", IF([Due Date]1 > TODAY(), "Yellow", "Red")))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 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!