COMBIN Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel COMBIN function returns the number of combinations — how many ways you can choose a group of items from a larger set when order does not matter and items are not repeated.


Quick answer:
=COMBIN(5,2) = 10

Syntax

=COMBIN(number, number_chosen)
ArgumentDescription
numberRequiredThe total number of items to choose from (n).
number_chosenRequiredHow many items are chosen in each group (k). Must be between 0 and number.

How to use it

COMBIN answers “how many different groups of k can I pick from n items?” when order is irrelevant and nothing repeats. It is the classic n choose k.

=COMBIN(5,2) // = 10
=COMBIN(52,5) // 5-card hands = 2598960
=COMBIN(10,0) // one empty group = 1

Under the hood, COMBIN(n,k) = FACT(n) / (FACT(k) * FACT(n-k)). Use it for lottery odds, poker hands, or any “choose a committee” count. When order does matter, use PERMUT instead; when repetition is allowed, use COMBINA.

Order vs no order: COMBIN ignores order, so {A,B} and {B,A} count once. If picking 1st/2nd/3rd place where order matters, use PERMUT, which gives larger counts.

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free COMBIN 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 does COMBIN calculate?
The number of ways to choose number_chosen items from number total when order doesn't matter and items aren't repeated. =COMBIN(5,2) = 10.
How many 5-card poker hands are there?
=COMBIN(52,5) = 2,598,960 — the number of distinct 5-card hands from a 52-card deck.
What is the difference between COMBIN and PERMUT?
COMBIN ignores order ({A,B} = {B,A}); PERMUT counts ordered arrangements ({A,B} ≠ {B,A}), so PERMUT always returns a larger or equal number.
When should I use COMBINA instead?
Use COMBINA when items can repeat (combinations with repetition). COMBIN assumes each item is picked at most once.

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: COMBINA · FACT · FACTDOUBLE · MULTINOMIAL · GCD