Back to Solutions and methods

How to build a PERT chart, step by step

Ce qu'il faut retenir

  • A PERT network starts from work packages, not from a blank page — the WBS is its input.
  • Model the constraint that actually exists, not the order you happen to expect.
  • Circular dependencies and false constraints are the two errors that make a network worse than no network.

A PERT chart is a network of tasks connected by dependency relationships. Building one is mechanical once you have the right input — and nearly impossible from a blank page, which is why so many attempts stall.

Building a PERT chart step by step

Step 0 — Start from the WBS

The input to a network is the set of work packages from your work breakdown structure. Trying to build a network directly from memory produces two predictable failures: tasks nobody thought of are missing, and the level of granularity is inconsistent.

If you do not have a WBS, build that first. It takes less time than debugging a network built on an incomplete list.

Step 1 — List the activities at a single level of granularity

Mixing granularity is the most common structural error. A network where one node is "build the API" and another is "send the kick-off invite" cannot be reasoned about: the float numbers are meaningless because the nodes are not comparable.

Pick a level — usually the work package — and stay on it.

Step 2 — Define the dependencies

For each activity, ask two questions:

  • What must be finished before this can start?
  • What cannot start until this is finished?

Asking both directions catches constraints that a single pass misses. Record the type of each link — Finish-to-Start in most cases, Start-to-Start or Finish-to-Finish where work genuinely overlaps.

Model real constraints, not expected order

This is the distinction that determines whether the network is useful. "We usually do A before B" is a habit. "B physically cannot start until A is finished" is a constraint.

Encoding habits as constraints produces a network that is longer than reality and a critical path that is fiction. Every link should survive the question: what breaks if these run in parallel? If the answer is "nothing, it would just be unusual", it is not a dependency.

Step 3 — Draw the network

Each activity is a node; each dependency is an arrow. The network must be acyclic: no path may lead back to its own starting point.

Two structural features deserve attention as you draw:

  • Convergence points — nodes where several chains meet. These concentrate risk: they cannot start until the slowest predecessor finishes, so they absorb every upstream delay.
  • Long single-thread chains — sequences with no parallelism. They are entirely exposed: any slip anywhere propagates fully.

Step 4 — Add durations

Assign a duration to each activity. Where uncertainty is high, use a three-point estimate rather than a single number — the PERT formula exists precisely for this.

Durations are work time, not calendar time, and they belong to the activity, not to the person. Mixing the two — "two days, but Marc is only in on Thursdays" — is how resource constraints get silently encoded as logical ones.

Step 5 — Compute the critical path

With the network and durations in place, run the forward and backward passes to obtain earliest and latest dates, then the float per activity. The chain with zero float is the critical path.

At this point the network stops being a drawing and starts being a decision tool: you know which delays matter and which do not.

The four errors that make a network useless

  • Circular dependencies. A depends on B, B depends on A. The calculation cannot resolve. Common when a network is built by hand across several sessions.
  • False constraints. Habits recorded as dependencies. Inflates the critical path and hides genuine parallelism.
  • Resource constraints modelled as logical ones. Two tasks sequenced because one person does both. This is real, but it belongs to resource levelling — encoding it in the logic makes the network wrong as soon as staffing changes.
  • A network built once and never updated. The critical path moves when durations change. A network that is not recomputed describes a project that no longer exists.

Frequently asked questions

A complete list of work packages, normally from a WBS, all at the same level of granularity. Building a network from memory produces missing tasks and inconsistent granularity.

Ask what breaks if the two tasks run in parallel. If the answer is "nothing, it would just be unusual", it is not a dependency. Encoding habits inflates the critical path.

No. Two tasks sequenced because the same person does both is a resource constraint, handled by resource levelling. Putting it in the logic makes the network wrong as soon as staffing changes.

A node where several chains meet. It cannot start until its slowest predecessor finishes, so it absorbs every upstream delay. Convergence points are where schedule risk concentrates.

Looking for a method that holds? See how Orchesia structures the work before the schedule.

See dependencies and the critical pathDiscover the upfront-first approach

Related articles

How to scope a project before you commit to a date
Solutions and methods

How to scope a project before you commit to a date

Framing is not paperwork. It is the last moment where a decision is cheap. Here is what a scoping stage has to produce before anyone opens a schedule.

8 min read
How to build a WBS, step by step
Solutions and methods

How to build a WBS, step by step

A practical method for decomposing a project into deliverables and work packages, with the checks that tell you the structure is sound.

8 min read
PERT formula and critical path calculation, explained simply
Solutions and methods

PERT formula and critical path calculation, explained simply

The three-point estimate, the forward and backward passes, total and free float: the arithmetic behind a schedule you can defend.

10 min read