Syntax
| Parameter | Description |
|---|---|
| n | Parameter of the COMBIN function. |
| k | Parameter of the COMBIN function. |
Examples
Lottery combinations
=COMBIN(49, 6)
Team selection
=COMBIN(12, 5)
Handshakes in a room
=COMBIN(20, 2)
Common Errors
k cannot exceed n, and both must be non-negative. =COMBIN(3, 5) returns #NUM! because you can't choose 5 from 3.
Non-numeric arguments return #VALUE!.
Tips
COMBIN is for when order doesn't matter (choosing a committee). If order matters (assigning roles), use PERMUT instead.
COMBIN(n, k) = COMBIN(n, n-k). Choosing 3 from 10 equals choosing 7 from 10 — there are 120 either way.
For probability: favorable outcomes / total outcomes. E.g., P(exactly 3 heads in 5 flips) = COMBIN(5,3) × 0.5^5 = 10/32.
Try COMBIN in Viztab
Import your data and use COMBIN with 370+ other formulas. No signup required.
Open Viztab