Combin Function Excel

There are two ways to “combin function excel”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

Exact answer

In Excel: use =COMBIN(n, k) when order does not matter and =PERMUT(n, k) when it does — =COMBIN(49, 6) gives the 13,983,816 lottery combinations.

On this page8

Syntax

=COMBIN(number, number_chosen) and =PERMUT(number, number_chosen)

Arguments

Argumentrequired / optionalDescription
numberrequiredThe size of the set to choose from.
number_chosenrequiredHow many to choose. Must not exceed number.

Related functions

POWERPRODUCTRANDBETWEEN
Annotated stepsExcel
1

Decide whether order matters — that alone chooses between PERMUT and COMBIN.

2

Type =COMBIN( or =PERMUT( and enter the set size, then how many are chosen.

3

Press Enter. For odds, take 1 divided by the result.

4

Use FACT for the arrangements of a whole set, keeping the input at or below 170.

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

COMBIN counts how many ways k items can be chosen from n when order is irrelevant; PERMUT counts the same when order matters, and is therefore always the larger number; FACT returns n factorial, the count of ways to arrange n items. The distinction between the first two is the whole of the practical difference: a committee of three from ten is COMBIN, a ranked podium of three from ten is PERMUT. Their everyday uses are probability estimation, test-case counting and scheduling combinatorics. FACT overflows to #NUM! above 170. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “combin function excel”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

Lottery odds for six numbers from 49: =COMBIN(49, 6) returns 13,983,816, so a single ticket has that chance to one. A ranked top three from ten entrants: =PERMUT(10, 3) returns 720, while =COMBIN(10, 3) returns only 120 because the ranking no longer matters. Arrangements of five items: =FACT(5) returns 120. COMBIN and PERMUT answer "how many possibilities" without enumeration, and picking the wrong one is off by a factor of k factorial. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Nothing on this page is behind a login or a download: the exact answer is at the top, and the detail below it is there for when you need it. That is the whole promise here — the answer first, and just enough context to make it stick. Here is the takeaway for “combin function excel”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.

Common mistakes

  • Using COMBIN where order matters, which undercounts by a factor of k factorial.
  • A number_chosen larger than number, which returns #NUM!.
  • Passing more than 170 to FACT, which overflows.

Frequently asked questions

What is the difference between COMBIN and PERMUT?

COMBIN ignores order, PERMUT respects it. PERMUT is always the larger figure for the same inputs.

How do I calculate lottery odds?

=COMBIN(pool_size, numbers_drawn) gives the total combinations; one divided by that is the chance of a single ticket.

Why does FACT return #NUM!?

The input exceeds 170, beyond which the result overflows Excel's numeric range.