Poisson Formula Excel

If you just need to poisson formula excel and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: use =POISSON.DIST(x, mean, TRUE) — it models counts of events per interval, such as calls per hour or defects per batch.

On this page8

Syntax

=POISSON.DIST(x, mean, cumulative)

Arguments

Argumentrequired / optionalDescription
xrequiredThe number of events to evaluate.
meanrequiredThe average number of events per interval.
cumulativerequiredTRUE for x or fewer, FALSE for exactly x.

Related functions

BINOM.DISTNORM.DIST and NORM.INVAVERAGE
Annotated stepsExcel
1

Work out the average event count for the interval you care about.

2

Make sure x and the mean use the same interval — both per hour, or both per day.

3

Type =POISSON.DIST( and enter x, the mean, and TRUE for a cumulative probability.

4

Subtract from 1 to get the probability of exceeding a capacity threshold.

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

POISSON.DIST gives the probability of a number of events in a fixed interval when events occur independently at a constant average rate. It differs from the binomial in having no fixed number of trials: you are not asking "how many of 100 units failed" but "how many calls arrived this hour". That makes it the right model for arrivals, faults and demand spikes, which is why staffing and capacity planning rests on it. The mean must be expressed for the same interval as x — a rate of 12 per day cannot be paired with an hourly count. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “poisson formula excel”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

A support line averaging 8 calls an hour: the chance of 12 or fewer in a given hour is =POISSON.DIST(12, 8, TRUE), about 0.94, so staffing for 12 covers most hours. The chance of exactly 8: =POISSON.DIST(8, 8, FALSE), around 0.14. The chance of more than 15, which drives the overflow plan: =1-POISSON.DIST(15, 8, TRUE). POISSON.DIST is the model behind staffing and capacity planning, because it answers "how bad can a normal hour get". If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Keep this page bookmarked for the next time the same question comes up. Better still, repeat the steps once in your own workbook — doing it yourself is what turns a copied answer into something you remember. The short version of “poisson formula excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • Mixing intervals, such as a daily mean with an hourly count.
  • Using it where the number of trials is fixed and known, which is the binomial case.
  • Assuming a constant rate across a period where demand plainly varies by time of day.

Frequently asked questions

When do I use Poisson rather than binomial?

When counting events in an interval with no fixed number of trials — arrivals, faults, demand.

How do I size capacity from it?

Find the x where the cumulative probability reaches your service level, typically 0.95.

What are its assumptions?

Events are independent and the average rate is constant across the interval.