BETA.INV Function

Excel Functions › Statistical

Excel 2010+ Statistical

The Excel BETA.INV function is the inverse of the cumulative beta distribution: give it a probability and it returns the value of x at which that cumulative probability occurs.


Quick answer:
=BETA.INV(0.6855,8,10,1,3) ≈ 2 (inverse of BETA.DIST)

Syntax

=BETA.INV(probability, alpha, beta, [A], [B])
ArgumentDescription
probabilityRequiredA probability between 0 and 1 associated with the beta distribution.
alphaRequiredFirst shape parameter (α > 0).
betaRequiredSecond shape parameter (β > 0).
AOptionalLower bound of x. Default 0.
BOptionalUpper bound of x. Default 1.

How to use it

BETA.INV answers the reverse question to BETA.DIST: instead of "what is the probability at this x?", it asks "at what x does this cumulative probability occur?" It is the percentile finder for the beta distribution.

=BETA.INV(0.6855,8,10,1,3) // ≈ 2
=BETA.INV(0.5,2,3) // median on [0,1] ≈ 0.386

Because the two functions are inverses, =BETA.INV(BETA.DIST(x,…,TRUE,…),…) returns your original x. Use the same alpha, beta, A, and B in both.

Finding percentiles: pass 0.95 as the probability to find the 95th percentile of a beta-distributed variable — useful for confidence bounds on proportions.

Try it: interactive demo

Live demo

Pick a BETA.INV example to see the formula and its result.

Result:

Practice workbook

📊
Download the free BETA.INV 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

How does BETA.INV relate to BETA.DIST?
They are exact inverses. BETA.DIST turns an x into a cumulative probability; BETA.INV turns a probability back into the matching x — using the same shape and bound parameters.
What must the probability argument be?
A value strictly between 0 and 1. Values of exactly 0 or 1, or outside that range, return a #NUM! error.
Can I use BETA.INV to find a percentile?
Yes. Pass the percentile as a probability — for example 0.9 for the 90th percentile — and BETA.INV returns the corresponding x.
What replaced the old BETAINV?
BETA.INV (Excel 2010+) is the modern name; BETAINV is the legacy compatibility version. Both compute the same inverse beta value.

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 · BINOM.INV · GAMMA.INV · CHISQ.INV · NORM.INV