How to Calculate the Critical Path
The critical path tells you your shortest possible finish date and which tasks you cannot afford to slip.
For the full concept, see Critical Path Method.
Steps
- List all activities and estimate each one’s duration.
- Map dependencies — which activities must precede which.
- Run a forward pass to get Early Start and Early Finish for each activity.
- Run a backward pass to get Late Start and Late Finish.
- Calculate float (LS − ES); activities with zero float form the critical path.
- Check for multiple critical paths, which make the schedule more fragile.