POISSON.DIST is a DAX function that returns the Poisson distribution for a given number of events over a specific time period.
Syntax
POISSON.DIST(
X,
Mean,
Cumulative
)
Argument | Properties | Description |
---|---|---|
X | The number of events. | |
Mean | The expected numeric value. | |
Cumulative | A logical value that determines the form of the probability distribution returned. If cumulative is TRUE, POISSON.DIST returns the cumulative Poisson probability that the number of random events occurring will be between zero and x inclusive; if FALSE, it returns the Poisson probability mass function that the number of events occurring will be exactly x. |