The Excel MULTINOMIAL function returns the ratio of the factorial of the sum of values to the product of their individual factorials — the multinomial coefficient used to count arrangements of grouped items.
Syntax
| Argument | Description | |
|---|---|---|
number1 | Required | The first value. Each must be non-negative; decimals are truncated. |
number2, ... | Optional | Up to 254 additional values. MULTINOMIAL uses (sum)! divided by the product of each value's factorial. |
How to use it
MULTINOMIAL computes (a + b + c + ...)! / (a! × b! × c! × ...). It counts how many distinct arrangements exist when you have groups of identical items.
A classic use is counting distinct letter arrangements of a word with repeated letters, or splitting n items into named groups of fixed sizes. With only two arguments it reduces to a single COMBIN: MULTINOMIAL(k, n-k) = COMBIN(n, k).
Worked check: =MULTINOMIAL(2,3,4) sums to 9, so it computes 9! / (2!×3!×4!) = 362880 / (2×6×24) = 362880 / 288 = 1260.
Try it: interactive demo
Pick a MULTINOMIAL example to see the formula and its result.
Practice workbook
Frequently asked questions
What does MULTINOMIAL compute?
=MULTINOMIAL(2,3,4) = 9!/(2!×3!×4!) = 1260.What is MULTINOMIAL used for?
How does MULTINOMIAL relate to COMBIN?
MULTINOMIAL(k, n-k) = COMBIN(n, k). MULTINOMIAL generalizes COMBIN to more than two groups.Can MULTINOMIAL take negative or decimal values?
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