Summary

The Excel NORMSINV function returns the inverse of the standard normal cumulative distribution. This is a legacy function that is replaced by the NORM.S.INV function. For complete documentation and examples, see the NORM.S.INV function.

Purpose 

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

Return value 

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

Syntax

=NORMSINV(probability)
  • probability - A probability corresponding to the standard normal distribution (CDF).

Using the NORMSINV function 

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:

=NORMSINV(probability) // returns z-score
=NORMSDIST(z-score) // returns probability

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.

Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi - I'm Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.