ExcelFunctions.net Logo

The Excel POISSON Function

Home » Excel-Built-In-Functions » Excel-Statistical-Functions » Excel-Poisson-Function
Poisson Distribution

The Poisson distribution is a discrete probability function that is used to give the probability of a number of events occurring in a specified time period.

The Poisson probability mass function calculates the probability that there will be exactly x occurrences within the specified time period. This is given by the formula :
Poisson Probability Mass Function

where λ is the expected number of occurrences within the specified time period.

The cumulative Poisson probability function calculates the probability that there will be at most x occurrences within the specified time period. This is given by the formula :
Cumulative Poisson Probability Function
More information on the Poisson Distribution is given on the Wikipedia Poisson Distribution Page
POISSON and POISSON.DIST

In Excel 2010, the Poisson function has been replaced by the Poisson.Dist function, which has improved accuracy.

Although it has been replaced, the Poisson function is still available in Excel 2010 (stored in the list of compatibility functions), to allow compatibility with earlier versions of Excel.

Basic Description

The Excel POISSON function calculates the Poisson Probability Mass Function or the Cumulative Poisson Probability Function for a supplied set of parameters.

The format of the function is :

POISSON( x, mean, cumulative )

Where the function arguments are:

x -
The number of events that we want the probability for (must be ≥ 0)
This value should be an integer; If a decimal is supplied, it will be truncated to an integer by Excel
mean - The expected number of events (must be ≥ 0)
cumulative - A logical argument that specifies the type of distribution to be calculated. This can be either:
TRUE- use the cumulative distribution function
FALSE- use the probability mass function

Poisson Function Examples

Example 1 - Poisson Probability Mass Function

The chart on the right shows the the Poisson Probability Mass Function with an expected value (mean) of 25.

If you want to use Excel to calculate the value of this function at x = 40, this can be done using the Excel Poisson function, as follows:

=POISSON( 20, 25, FALSE )

This gives the result 0.051917469.
Plot of Poisson Probability Mass Function with Lambda=25
Poisson Probability Mass Function with mean (λ) = 25

Example 2 - Cumulative Poisson Probability Function

The chart on the right shows the the Cumulative Poisson Probability Function with an expected value (mean) of 40.

If you want to use Excel to calculate the value of this function at x = 25, this can be done using the Excel Poisson function, as follows:

=POISSON( 35, 40, TRUE )

This gives the result 0.242414198.
Plot of Cumulative Poisson Probability Function with Lambda=40
Cumulative Poisson Probability Function with mean (λ) = 40


Further information and examples of the Excel Poisson function can be found on the Microsoft Office website.


Trouble Shooting

If you get an error from the Excel Poisson function this is likely to be one of the following :

Common Errors
#NUM! - Occurs if either the supplied x argument or the supplied mean argument is < 0
#VALUE! - Occurs when either of the supplied x or mean arguments are non-numeric




Valid XHTML 1.0 Transitional
Disclaimer Privacy Policy

Copyright © 2008-2011 ExcelFunctions.net