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
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 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!