Color Auto-Changes
I have my sheet coded so that the status updates as the due date approaches, passes, etc. The only problem is that in a row where the due date is blank it considers it 'Late' and makes it red. I would like for it to just leave the status blank in that row. This is the formula I had used:
=IF([Date Due]3 < TODAY(), "Red", IF([Date Due]3 = TODAY(), "Yellow", IF(TODAY() - [Date Due]3 > -3, "Yellow", IF([Date Due]3 > TODAY(), "Green"))))
Does anybody know what I should add to the line to make what I want happen?
Comments
-
Try modifying your formula to...
=IF(ISBLANK([Date Due]3), "", IF([Date Due]3 < TODAY(), "Red", IF([Date Due]3 = TODAY(), "Yellow", IF(TODAY() - [Date Due]3 > -3, "Yellow", IF([Date Due]3 > TODAY(), "Green")))))
Did that work for you?
-
Yes that worked! Thank you!
-
You're welcome!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 137 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!