Need Formula
I need a formula that will raise the flag when the following conditions are met:
-If Status reads "Not Started" or "Complete"
AND
-If Start Date is less than TODAY
Best Answer
-
Give this a go.
=IF(AND(OR(Status@row = "Not Started", Status@row = "Delayed"), [Start Date]@row < TODAY()), 1)
Answers
-
Try this one...
=IF(AND(OR(Status@row = "Not Started", Status@row = "Complete"), [Start Date]@row < TODAY()), 1)
-
Hey Paul - I'm still having difficulty. Maybe I dont have the right conditions identified?
Also - I had to make the following correction to the conditions I gave you originally:
-If Status reads "Not Started" or "Delayed"
AND
-If Start Date is less than TODAY
For some reason I am still getting the flag raised when the task is marked as Complete.
Here is the formula I am using:
=IF(OR(Status4 = "Not Started", Status4 = "Delayed", [Start Date]4 < TODAY()), 1, 0)
-
Give this a go.
=IF(AND(OR(Status@row = "Not Started", Status@row = "Delayed"), [Start Date]@row < TODAY()), 1)
-
Amazing! Thank you, Paul!🙂
-
Help Article Resources
Categories
Check out the Formula Handbook template!