ID EN
#Statistical

NORMSINV

Excel Functions

Calculate the inverse of the standard normal cumulative distribution function (CDF) for a given probability.

Syntax

EXCEL
=NORMSINV(probability)

Arguments

Parameter Description
probability A probability corresponding to the standard normal distribution (CDF).

Return Value

A z-score value representing the threshold for the given probability.

Details

The NORMSINV function returns the inverse of the standard normal cumulative distribution. Given the probability of an event occurring below a threshold value, the function returns the z-score of the threshold. For example, NORMSINV(0.8413447) returns 1 since the probability of an event occurring below 1 standard deviation from the mean is 0.8413447. The relationship between NORMSINV and NORMSDIST is: For better accuracy and consistency with other modern statistical functions, it is recommended to use the NORM.S.INV function. NORM.S.INV provides the same inverse CDF functionality with improved numerical precision. See the NORM.S.INV function for more details.

Examples

Example 1

The relationship between NORMSINV and NORMSDIST is:

EXCEL
=NORMSINV(probability) // returns z-score
Example 2
EXCEL
=NORMSDIST(z-score) // returns probability

See Also

NORM.S.INV