NORM.DIST function

Category: Statistical
Introduced: Excel 2010

Summary

Returns the normal cumulative distribution

Syntax

NORM.DIST(x,mean,standard_dev,cumulative) The NORM.DIST function syntax has the following arguments:
• X Required. The value for which you want the distribution.
• Mean Required. The arithmetic mean of the distribution.
• Standard_dev Required. The standard deviation of the distribution.
• Cumulative Required. A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function.

Example

=NORM.DIST(A2,A3,A4,TRUE)
=NORM.DIST(A2,A3,A4,FALSE)

Microsoft Support Page

https://support.microsoft.com/en-us/office/norm-dist-function-edb1cc14-a21c-4e53-839d-8082074c9f8d

Back to Functions