Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.33 KB

norm-dist-function-dax.md

File metadata and controls

51 lines (34 loc) · 1.33 KB
description title
Learn more about: NORM.DIST
NORM.DIST function (DAX) | Microsoft Docs

NORM.DIST

[!INCLUDEapplies-to-measures-columns-tables-visual-calculations]

Returns the normal distribution for the specified mean and standard deviation.

Syntax

NORM.DIST(X, Mean, Standard_dev, Cumulative)  

Parameters

Term Definition
X The value for which you want the distribution.
Mean The arithmetic mean of the distribution.
Standard_dev The standard deviation of the distribution.
Cumulative* 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.

Return value

The normal distribution for the specified mean and standard deviation.

Remarks

[!INCLUDE function-not-supported-in-directquery-mode]

Example

EVALUATE { NORM.DIST(42, 40, 1.5, TRUE) }

Returns

[Value]
0.908788780274132

Related content

NORM.S.DIST function
NORM.INV function
NORM.S.INV