Syntax
| Parameter | Description |
|---|---|
| probability | Parameter of the NORM.S.INV function. |
Examples
Z-score for 95th percentile
=NORM.S.INV(0.95)
Critical value for two-tailed 99% CI
=NORM.S.INV(0.995)
Lower quartile z-score
=NORM.S.INV(0.25)
Common Errors
Probability must be strictly between 0 and 1. Passing 0 or 1 exactly returns an error because the inverse is undefined at those extremes.
Returned if the probability argument is text or a non-numeric value.
Tips
Use =mean + NORM.S.INV(0.975) * (std/SQRT(n)) to construct a 95% confidence interval upper bound for a sample mean.
To go from percentile to a real-world value: raw_score = mean + NORM.S.INV(percentile) * std_dev.
NORM.S.INV(p) = -NORM.S.INV(1-p). So the z-score for the 5th percentile is the negative of the z-score for the 95th percentile.
Try NORM.S.INV in Viztab
Import your data and use NORM.S.INV with 370+ other formulas. No signup required.
Open Viztab