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
- 67.8K Get Help
- 474 Global Discussions
- 203 Use Cases
- 515 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!