How to Calculate Normal Distribution in Excel

If you just need to calculate normal distribution in 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 =NORM.DIST(x, mean, sd, TRUE) for the probability of being at or below x, and =NORM.INV(probability, mean, sd) to go the other way.

On this page8

Syntax

=NORM.DIST(x, mean, standard_dev, cumulative)

Arguments

Argumentrequired / optionalDescription
xrequiredThe value to evaluate.
meanrequiredThe distribution mean.
standard_devrequiredThe standard deviation. Must be positive.
cumulativerequiredTRUE for the cumulative probability, FALSE for the density.

Related functions

STANDARDIZESTDEVPERCENTILE
ƒxZ-Score CalculatorLive

Mean = 70.714 · Std deviation = 5.992

Z-score
1.550
Percentile
93.9%
=(B2AVERAGE(A1:A7))/STDEV.S(A1:A7)
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

NORM.DIST returns the probability that a normally distributed value falls at or below a point; NORM.INV takes a probability and returns the corresponding value. The cumulative argument is the one that catches people — TRUE gives the running probability you almost always want, FALSE gives the density curve height, which is only useful for plotting the bell shape. Their standardised siblings NORM.S.DIST and NORM.S.INV assume a mean of 0 and a standard deviation of 1, so they take z-scores directly. The assumption of normality is doing real work here and deserves a check before the numbers are trusted. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “calculate normal distribution in excel”. Start on a copy or a tiny sample, keep the affected cells 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

The share of deliveries arriving within 5 days when the mean is 4.2 and the deviation 1.8: =NORM.DIST(5, 4.2, 1.8, TRUE) returns about 0.67. The service level that 95 % of orders meet: =NORM.INV(0.95, 4.2, 1.8) returns roughly 7.2 days. Plotting the bell curve itself needs the density form with FALSE. These two turn a mean and a deviation into service levels and thresholds, which is what capacity and SLA planning actually asks for. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.

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. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. The short version of “calculate normal distribution in 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

  • Passing FALSE for cumulative and reading the result as a probability; that is the density, not a probability.
  • Applying it to visibly skewed data, where the normal assumption misstates the tails badly.
  • A standard deviation of zero or negative, which returns #NUM!.

Frequently asked questions

What does the cumulative argument do?

TRUE returns the probability of being at or below x. FALSE returns the height of the density curve, used only for plotting.

How do I find the value at a given percentile?

=NORM.INV(probability, mean, sd). It is the inverse of NORM.DIST.

What is NORM.S.DIST?

The standardised version, assuming mean 0 and deviation 1, so it takes a z-score directly.

Other ways people ask this

People reach this page typing “how to calculate a normal distribution in excel” and “how to calculate gaussian distribution in excel”, among other phrasings; whichever wording you used, the fix above is the one you want.

Why do people search for this in so many different ways?

Because the same task has many names. “how to calculate a normal distribution in excel”, “how to calculate gaussian distribution in excel” all point at the one operation explained on this page, which is why they all lead here.