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
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.3K Get Help
- 462 Global Discussions
- 156 Industry Talk
- 508 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 81 Community Job Board
- 517 Show & Tell
- 35 Member Spotlight
- 3 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!