At Risk Function using date midpoint?

Sam N
✭✭✭
Hi everyone,
I'm hoping someone can help me here - because I'm completely stuck. I'm working on building an equation that flags something as "at risk" if the following conditions are met
- Project Status is "In Progress"
- The halfway point between the Project Start Date and the Project End Date has passed.
- Percent Complete is not 100%
Ideally, the "At risk" column is blank if the Project Status is "Not Started" or "On Hold" and says "No" if the project has not met the above conditions, but is in "progress" or "completed"
Thank you all. I'm pretty sure I can figure out everything except the halfway point request.
Tags:
Answers
-
You could try this:
=IF(AND([Project Status]@row = "In Progress", [Percent Complete]@row < 1, TODAY() >= ([Project Start Date]@row + ([Project End Date]@row - [Project Start Date]@row) / 2)), 1, 0)
Hope this helps!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 442 Global Discussions
- 154 Industry Talk
- 503 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!