Conditional Formatting for two end dates

Just to be clear I only have one end date in my sheet.
The sheet has a conditional format set up to flag "At Risk" tasks when the end date has already passed. Here's the current formula:
IF(AND([End Date]3 < TODAY(), NOT(Status3 = "Complete")), 1, 0)
I want to add another condition to flag the task when it is within 5 days of the end date.
Can anyone help me work this out? Thank you!
Comments
-
You could change your flag column to something that has more options such as a RYG type. Then you could use a nested IF to designate different statuses and have your conditional formatting based off of that. Something like...
=IF(Status@row <> "Complete", IF(TODAY() >= [End Date]@row, "Red", IF(TODAY(5) >= [End Date]@row, "Yellow")), "Green")
This will turn the ball Red if the Status is not complete and the end date is today or past due, Yellow, if it is not complete and the end date is within the next 5 days, blank if it is not complete and the end date is more than 5 days away, and Green if the status is complete.
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67K Get Help
- 441 Global Discussions
- 154 Industry Talk
- 502 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 79 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives