Summary

The Excel NORM.S.INV function returns the inverse of the standard normal cumulative distribution.

Purpose 

Get inverse of the standard normal cumulative distribution

Return value 

Returns the threshold value of a probability.

Syntax

=NORM.S.INV(probability)
  • probability - A probability corresponding to the standard normal distribution.

How to use 

The NORM.S.INV 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, NORM.S.INV(0.8413) returns 1 since the probability of an event occurring below 1 standard deviation from the mean is 0.8413.

=NORM.S.INV(0.8413)=1
=NORM.S.DIST(1, TRUE)=0.8413

Notes

  • The return value is a z-score, which represents how far the value is from the mean of the distribution in terms of the standard deviation. See NORM.INV for non-standardized input.
  • Probability input outside of the range of (0,1) results in an error. 
  • The standard normal distribution is a special case of the normal distribution with a mean of 0 and a standard deviation of 1.
  • The standard normal cumulative distribution function returns the probability of an event occurring below a threshold value. This probability is equal to the area under the bell-shaped curve to the left of the threshold value.
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.