BETADIST Function

Excel Functions › Compatibility

All versions (legacy) Compatibility

The Excel BETADIST function returns the cumulative beta probability distribution. It still works in every version, but Microsoft replaced it in Excel 2010 with BETA.DIST, which adds a switch for the cumulative-vs-density form.


Quick answer:
=BETADIST(2,8,10,1,3) cumulative probability ≈ 0.6855

Syntax

=BETADIST(x, alpha, beta, [A], [B])
ArgumentDescription
xRequiredThe value between the bounds A and B at which to evaluate the distribution.
alphaRequiredThe first shape parameter of the distribution (must be > 0).
betaRequiredThe second shape parameter of the distribution (must be > 0).
AOptionalThe lower bound of the interval for x. Defaults to 0.
BOptionalThe upper bound of the interval for x. Defaults to 1.

How to use it

BETADIST returns the cumulative probability that a beta-distributed variable is at most x. The optional A and B rescale the standard 0–1 beta interval to any range.

=BETADIST(2,8,10,1,3) // cumulative ≈ 0.6855
=BETADIST(0.5,8,10) // default 0-1 bounds ≈ 0.6855

Note the legacy argument order — x, alpha, beta — and that BETADIST only returns the cumulative value. The modern BETA.DIST requires an explicit cumulative flag, letting you also request the probability density.

Use BETA.DIST instead: in Excel 2010 and later, =BETA.DIST(2,8,10,TRUE,1,3) gives the same result and can also return the density when the flag is FALSE. BETADIST is retained only for older workbooks.

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free BETADIST 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 BETADIST?
BETA.DIST, introduced in Excel 2010. It takes a cumulative argument so it can return either the cumulative distribution or the probability density. =BETA.DIST(2,8,10,TRUE,1,3) equals =BETADIST(2,8,10,1,3).
Does BETADIST return the density or the cumulative probability?
Only the cumulative probability — the area to the left of x. To get the probability density you must use the modern BETA.DIST with its cumulative flag set to FALSE.
What do the A and B arguments do?
They set the lower and upper bounds of the interval for x. If omitted, BETADIST uses the standard interval 0 to 1.
Is BETADIST safe to keep using?
Yes — it still calculates correctly for backward compatibility. But Microsoft may eventually retire it, so new workbooks should use BETA.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: BETA.DIST · BETAINV · BINOMDIST · EXPONDIST · CONFIDENCE