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
- 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