Skip to main content
Workday User Guide
Last Updated: 2023-06-23
POISSON.DIST

POISSON.DIST

Description

Returns the poisson distribution probability for the specified value.

Syntax

POISSON.DIST(
x
,
mean
,
cumulative
)
  • x
    : The number of events to calculate the probability for.
  • mean
    : The mean of the distribution.
  • cumulative
    : The type of distribution to use. FALSE = probability mass function; TRUE = cumulative distribution function.

Example

Formula
Result
=POISSON.DIST(15,25,TRUE)
0.022293
=POISSON.DIST(15,25,FALSE)
0.009891

Notes

  • This function is a synonym of POISSON().
  • Worksheets supports only integer values of
    x
    .