Returns the number of permutations for the specified number of objects that can be selected from another specified number of objects.
Syntax
![]() |
---|
PERMUT( Integer n, Integer k ) → Integer |
A permutation is any set or subset of objects or events where internal order is significant. Permutations are different from combinations, for which the internal order is not significant. The number of permutations is n!/(n-k)! where ! denotes factorial.
If n is less than k, or either n or k are negative or zero, the function returns the #NUM! error value.
Formula
![]() |
---|
=PERMUT(50,5) |
Function Reference
FACT Function
COMBIN Function