EXPON.DIST is a DAX function that returns the exponential distribution for modeling the time between events.
Syntax
EXPON.DIST(
X,
Lambda,
Cumulative
)
Argument | Properties | Description |
---|---|---|
X | The value of the function. | |
Lambda | The parameter value. | |
Cumulative | A logical value that indicates which form of the exponential function to provide. If cumulative is TRUE, EXPON.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function. |