Using IF/And statements

I am running into the issue where I made a formula to flag a row if the due date is set to today or before today. But I don't know how to change it to not flag if the job has already been completed. Here is my current formula: =IF([End Date]@row <= TODAY(0), 1, 0) and here is what it is producing (below). But I don't want the flag to be there once the job is complete.
Best Answers
-
Hi @Alicia D,
Try this.
=IF(AND([End Date]@row <= TODAY(0), Complete@row <> "Complete"), 1, 0)
Hope this helps,
Dave
-
@DKazatsky2 This worked, thank you! Is there a way to have it so that it doesn't fill in the areas with blank spots in the status column? See below
-
This is untested but see if this does it.
=IF(AND([End Date]@row <= TODAY(0), Complete@row <> "Complete",Status@row <> ""), 1, 0)
Answers
-
Hi @Alicia D,
Try this.
=IF(AND([End Date]@row <= TODAY(0), Complete@row <> "Complete"), 1, 0)
Hope this helps,
Dave
-
@DKazatsky2 This worked, thank you! Is there a way to have it so that it doesn't fill in the areas with blank spots in the status column? See below
-
This is untested but see if this does it.
=IF(AND([End Date]@row <= TODAY(0), Complete@row <> "Complete",Status@row <> ""), 1, 0)
-
This worked, thank you so much!
Help Article Resources
Categories
Check out the Formula Handbook template!