CRITBINOM Function

Excel Functions › Compatibility

All versions (legacy) Compatibility

The Excel CRITBINOM function returns the smallest number of successes for which the cumulative binomial probability is at least a target value. It is the legacy name of BINOM.INV, introduced in Excel 2010.


Quick answer:
=CRITBINOM(10,0.5,0.75) smallest k = 6

Syntax

=CRITBINOM(trials, probability_s, alpha)
ArgumentDescription
trialsRequiredThe number of Bernoulli (independent) trials.
probability_sRequiredThe probability of success on each trial.
alphaRequiredThe target cumulative probability (criterion value) that must be reached or exceeded.

How to use it

CRITBINOM is the inverse of the cumulative binomial: it scans upward and returns the smallest number of successes k whose cumulative probability is at least alpha.

=CRITBINOM(10,0.5,0.75) // smallest k with cumulative ≥ 0.75 = 6
=CRITBINOM(10,0.5,0.5) // = 5

It is widely used in acceptance sampling and quality control — for example, the maximum number of defects to allow before rejecting a batch. The forward direction (count to probability) is handled by BINOMDIST.

Use BINOM.INV instead: =BINOM.INV(10,0.5,0.75) in Excel 2010+ returns the same value. CRITBINOM is kept only for backward compatibility.

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free CRITBINOM 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 CRITBINOM?
BINOM.INV, added in Excel 2010, with the same three arguments. =BINOM.INV(10,0.5,0.75) equals =CRITBINOM(10,0.5,0.75).
What exactly does CRITBINOM return?
The smallest integer number of successes k for which the cumulative binomial probability (k or fewer successes) first reaches or exceeds the target alpha.
How is CRITBINOM related to BINOMDIST?
They are inverses. BINOMDIST(...,TRUE) gives the cumulative probability for a given count; CRITBINOM finds the count that achieves a given cumulative probability.
Where is CRITBINOM used in practice?
In acceptance sampling and quality control — setting the cut-off number of successes or defects that triggers a decision. New workbooks should use BINOM.INV.

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: BINOM.INV · BINOMDIST · BETAINV · CHIINV · FINV