Project Phase Gaps and Overlaps
Hello, I have seen similar questions posted elsewhere, but I can't seem to make this work for my situation. I need to flag any project phases that overlap with other phases and any gaps of more than Xdays between the end of one phase and the start of another phase.
In the project plan, there are official phases (marked by a check in the Phase (y/n) column. There will be rows that are not Phases or Milestones (they will be project specific activities). The highlighted Start Dates have overlaps with the previous phase.
Answers
-
To flag overlapping phases, use the following formula in a "Flag" column (let's call it
OverlapFlag
):=IF(AND([Phase (Y/N)]@row = 1, [Phase (Y/N)]@row - 1 = 1, [End Date]@row - 1 >= [Start Date]@row), 1, 0)
This formula checks if the current row and the previous row are phases and if the end date of the previous phase is greater than or equal to the start date of the current phase. If so, it flags the overlap.
To flag gaps of more than
X
days (e.g., 5 days) between phases, use the following formula in a "Gap" column (let's call itGapFlag
):=IF(AND([Phase (Y/N)]@row = 1, [Phase (Y/N)]@row - 1 = 1, [Start Date]@row - [End Date]@row - 1 > X), 1, 0)
Replace
X
with the number of days you want to consider as a significant gap. This formula checks if the current row and the previous row are phases and if the gap between the end date of the previous phase and the start date of the current phase is greater thanX
days. If so, it flags the gap.You can then use Conditional Formatting to highlight the rows where
OverlapFlag
orGapFlag
equals1
.- Go to Conditional Formatting.
- Set a new rule where the condition is that the
OverlapFlag
orGapFlag
column equals1
. - Choose a colour to highlight these rows.
Hopefully something like that could work? -
Thank you. This solution will only work if the phases are in sequential rows, and they rarely are.
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.4K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 478 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 490 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives