GAUSS Function

Excel Functions › Statistical

Excel 2013+ Statistical

The Excel GAUSS function returns the probability that a standard normal value falls between 0 and z — that is, NORM.S.DIST(z,TRUE) minus 0.5. It gives the area under the bell curve from the mean out to z standard deviations.


Quick answer:
=GAUSS(2) area from 0 to z=2 = ~0.4772

Syntax

=GAUSS(z)
ArgumentDescription
zRequiredThe number of standard deviations from the mean. Any real number; negative z mirrors the result (GAUSS is an odd function).

How to use it

GAUSS is a convenience for a calculation analysts do constantly: the area under the standard normal curve from the centre (0) out to z. It is simply NORM.S.DIST(z, TRUE) − 0.5:

=GAUSS(2) // ~0.4772
=NORM.S.DIST(2,TRUE)-0.5 // same ~0.4772

Because the normal curve is symmetric, GAUSS(0) is 0 and the function is odd: GAUSS(−z) = −GAUSS(z). To turn the result into a two-tailed probability (the area within ±z), double it: the famous “68–95–99.7” rule comes straight out of 2×GAUSS(1), 2×GAUSS(2), and 2×GAUSS(3).

Tip: 2*GAUSS(1) ≈ 0.6827, 2*GAUSS(2) ≈ 0.9545, and 2*GAUSS(3) ≈ 0.9973 — the proportion of data within one, two, and three standard deviations of the mean.

Try it: interactive demo

Live demo

Pick a GAUSS example to see the formula and its result.

Result:

Practice workbook

📊
Download the free GAUSS practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

What exactly does GAUSS return?
The probability that a standard normal random variable lies between 0 and z — the area under the bell curve from the mean out to z. It equals NORM.S.DIST(z,TRUE) − 0.5.
How is GAUSS related to NORM.S.DIST?
NORM.S.DIST(z,TRUE) gives the area to the left of z (including the 0.5 below the mean). GAUSS strips off that 0.5, leaving just the slice from 0 to z.
What does GAUSS return for a negative z?
A negative result of equal magnitude — GAUSS is an odd function, so GAUSS(−2) = −GAUSS(2) = −0.4772. GAUSS(0) is exactly 0.
How do I get a two-tailed probability?
Double it: 2*GAUSS(z) is the area within ±z. This produces the empirical rule values 0.6827, 0.9545, and 0.9973 for z = 1, 2, and 3.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: NORM.S.DIST · NORM.DIST · PHI · STANDARDIZE · NORM.S.INV