Reputation: 9474
I have built a simple task tracker in Google sheet.
There is column B handling the status (In progress, Done) and Due date column C.
I have created to formulas: exact match for B that sets the color to green and date before today for C that sets the red color.
The problem is that they work independently. Red color is displayed for C even when B is Done.
And each rule highlights different column.
Text is exactly Done
Date is before =today()
How to make the date formatter ignore the past dues when the task status is set to Done?
Upvotes: 2
Views: 699
Reputation: 10573
You mentioned
exact match for B that sets the color to green and
date before today for C that sets the red color
Try the following formula under Custom formula is
=AND(C3<TODAY(),B3<>"Done", C3<>"")
(Do adjust ranges to your needs)
Upvotes: 2