
Find the probability of a certain number of successes in a fixed number of yes-or-no trials.
BINOM.DIST finds the probability of getting a certain number of successes in a fixed number of trials. It works best when every trial has only two possible outcomes, such as success or failure, click or no click, pass or fail.
Microsoft describes it as a binomial distribution function for independent trials with a constant probability of success. So this function makes sense only when the trial setup stays consistent from start to finish.
Returns the probability of a chosen number of successes when the number of trials is fixed.
The result is a value from 0 to 1, and you can format it as a percentage if that is easier to read.
=BINOM.DIST(number_s, trials, probability_s, cumulative)
number_s is the success count you want to test, trials is the total number of attempts, probability_s is the chance of success on each trial, and cumulative decides whether you want one exact result or the running total up to that result.
FALSE for the exact probability and TRUE for the probability of that number or fewer.| Function | Main use | Best when |
|---|---|---|
BINOM.DIST |
Binomial probability | You have a fixed number of success or failure trials. |
NORM.DIST |
Normal distribution | You are working with a bell-curve model instead of simple yes-or-no trials. |
POISSON.DIST |
Event counts over an interval | You want to model how often something happens in time or space. |
HYPGEOM.DIST |
Sampling without replacement | You are drawing from a limited group without putting items back. |
The last argument matters a lot here. FALSE gives the probability of exactly the number you entered. TRUE gives the cumulative probability from 0 up to that number.
This function is useful when the question sounds like, "What is the chance of getting this many successes out of this many tries?" That can be a review rate, a defect count, a set of correct answers, or any other setup where each trial ends in either success or failure.
It also helps to read the result in plain language before moving on. If Excel returns 0.12, that means the outcome should happen about 12% of the time under the assumptions you gave the function. When that number is very small, the result may be unusual enough to investigate.
FALSE for one exact success count.TRUE when you need "at most" that many successes.Use FALSE when the question is about one specific success count.
=BINOM.DIST(5,10,0.5,FALSE) // Returns the chance of exactly 5 successes.
Find the probability of exactly 5 successes in 10 trials with a 50% success rate. Formula: =BINOM.DIST(5,10,0.5,FALSE).
Use TRUE when you want the probability of that result or any smaller success count.
=BINOM.DIST(2,10,0.5,TRUE) // Finds the chance of getting 0, 1, or 2 successes.
Find the probability of getting at most 2 successes in 10 trials. Formula: =BINOM.DIST(2,10,0.5,TRUE).
This one measures the chance of an exact outcome when the success rate is already known.
=BINOM.DIST(8,10,0.7,FALSE) // Returns the chance of exactly 8 positive reviews.
Find the probability that exactly 8 out of 10 customers leave a review when the usual rate is 70%. Formula: =BINOM.DIST(8,10,0.7,FALSE).
A cumulative result helps when you want to know the probability of staying at or below a defect limit.
=BINOM.DIST(3,50,0.02,TRUE) // Returns the chance of 3 or fewer errors.
Find the probability of 3 or fewer errors in 50 items with a 2% error rate. Formula: =BINOM.DIST(3,50,0.02,TRUE).
BINOM.DIST returns a binomial probability for a fixed number of trials.FALSE for exactly that many successes and TRUE for that many or fewer.Tell your friends about this post