At Risk Flag turning red based on Start & End Date Formula
Hello everyone!
I am trying to automate some of the project plans, and I was wondering what the best way is to express this in a formula:
If Status is Not Started by 3 days after the Start Date, and in any other Staus but Completed by the End Date, mark the flag red in the At Risk column
@Andrée Starå Thank you!
Best Answer
-
Hi @Dora,
Here's the formula I came up with based on the criteria you put, hope it's helpful!
Basically, if today's date is greater than or equal to the Start Date + 3 AND the Status is equal to "Not Started", the flag will activate. If today's date is greater than or equal to the End Date AND the Status is not equal to "Completed", the flag will also activate.
=IF(AND(TODAY() >= ([Start Date]@row + 3), Status@row = "Not Started"), 1, IF(AND(TODAY() >= [End Date]@row, Status@row <> "Completed"), 1, 0))
Let me know if that works or if you have any questions.
Answers
-
Hi @Dora,
Here's the formula I came up with based on the criteria you put, hope it's helpful!
Basically, if today's date is greater than or equal to the Start Date + 3 AND the Status is equal to "Not Started", the flag will activate. If today's date is greater than or equal to the End Date AND the Status is not equal to "Completed", the flag will also activate.
=IF(AND(TODAY() >= ([Start Date]@row + 3), Status@row = "Not Started"), 1, IF(AND(TODAY() >= [End Date]@row, Status@row <> "Completed"), 1, 0))
Let me know if that works or if you have any questions.
-
That worked PERFECTLY! Thank you so much!
-
@Dora you're welcome!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.9K Get Help
- 441 Global Discussions
- 153 Industry Talk
- 501 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 79 Community Job Board
- 511 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!