Syntax
| Parameter | Description |
|---|---|
| x | Parameter of the NORM.DIST function. |
| mean | Parameter of the NORM.DIST function. |
| standard_dev | Parameter of the NORM.DIST function. |
| cumulative | Parameter of the NORM.DIST function. |
Examples
Probability of scoring below 80
=NORM.DIST(80, 72, 8, TRUE)
Probability above a threshold
=1 - NORM.DIST(100, 85, 12, TRUE)
PDF value
=NORM.DIST(0, 0, 1, FALSE)
Common Errors
Standard deviation must be positive (greater than 0).
Non-numeric arguments or cumulative is not TRUE/FALSE.
Tips
TRUE (cumulative) gives the area under the curve to the left of x — a probability. FALSE gives the curve height at x — a density, not directly a probability.
P(a < X < b) = NORM.DIST(b, mean, stdev, TRUE) - NORM.DIST(a, mean, stdev, TRUE). Subtract the CDFs of the two bounds.
For mean=0 and stdev=1, use NORM.S.DIST instead. It only needs the z-value and cumulative arguments.
Try NORM.DIST in Viztab
Import your data and use NORM.DIST with 370+ other formulas. No signup required.
Open Viztab