Syntax
| Parameter | Description |
|---|---|
| n | Parameter of the PERMUT function. |
| k | Parameter of the PERMUT function. |
Examples
PIN combinations
=PERMUT(10, 4)
Race podium
=PERMUT(8, 3)
Two from five
=PERMUT(5, 2)
Common Errors
k cannot exceed n. =PERMUT(3, 5) returns #NUM! because you can't arrange 5 items from only 3.
Non-numeric arguments return #VALUE!.
Tips
PERMUT(n,k) = COMBIN(n,k) × FACT(k). Permutations count each arrangement; combinations group them. PERMUT is always >= COMBIN.
If you're assigning people to ranked positions (1st, 2nd, 3rd), use PERMUT. If you're just picking a group, use COMBIN.
PERMUT doesn't allow the same item twice. For permutations with repetition, use PERMUTA or simply n^k.
Try PERMUT in Viztab
Import your data and use PERMUT with 370+ other formulas. No signup required.
Open Viztab