EXPONDIST Function

Excel Functions › Compatibility

All versions (legacy) Compatibility

The Excel EXPONDIST function returns the exponential distribution — useful for modelling the time between events. It is the legacy name of EXPON.DIST, introduced in Excel 2010.


Quick answer:
=EXPONDIST(0.2,10,TRUE) cumulative probability ≈ 0.8647

Syntax

=EXPONDIST(x, lambda, cumulative)
ArgumentDescription
xRequiredThe value of the function (a time or distance, must be ≥ 0).
lambdaRequiredThe rate parameter of the distribution (must be > 0).
cumulativeRequiredTRUE for the cumulative distribution function; FALSE for the probability density function.

How to use it

The exponential distribution models the waiting time until the next event in a process that happens at a constant average rate lambda. With cumulative set to TRUE you get the probability the event occurs by time x; with FALSE you get the density.

=EXPONDIST(0.2,10,TRUE) // cumulative ≈ 0.8647
=EXPONDIST(0.2,10,FALSE) // density ≈ 1.3534

A rate of 10 means 10 events per unit time on average, so most waits are short — hence the high cumulative probability already by x = 0.2. It is common in reliability and queueing analysis.

Use EXPON.DIST instead: =EXPON.DIST(0.2,10,TRUE) in Excel 2010+ returns the same value with identical arguments. EXPONDIST remains only for backward compatibility.

Try it: interactive demo

Live demo

Pick a EXPONDIST example to see the formula and its result.

Result:

Practice workbook

📊
Download the free EXPONDIST practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

What is the modern replacement for EXPONDIST?
EXPON.DIST, added in Excel 2010, with the same three arguments. =EXPON.DIST(0.2,10,TRUE) equals =EXPONDIST(0.2,10,TRUE).
What does the cumulative argument control?
TRUE returns the cumulative distribution — the probability the event has occurred by time x. FALSE returns the probability density at x.
What does lambda represent?
The rate parameter — the average number of events per unit of time (or distance). A larger lambda means events happen more frequently and waits are shorter.
When is the exponential distribution used?
For modelling the time between independent events that occur at a constant average rate — common in reliability engineering, queueing theory, and survival analysis. New workbooks should use EXPON.DIST.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: EXPON.DIST · BINOMDIST · BETADIST · FDIST · CHIDIST