This function calculates the number of permutations for the specified number of items (along with repetitions) that can be selected from the total items.
PERMUTATIONA(k,n)
This function has the following arguments:
Argument | Description |
---|---|
k | Refers to the total number of items. This value must be greater than 0. If the specified value is not an integer, the number is truncated. |
n | Refers to the number of items in each possible permutation. This value must be positive or 0. If the specified value is not an integer, the number is truncated. |
If the values in the arguments passed are invalid, this functions returns an error.
Accepts numeric data for both arguments. Returns numeric data.
PERMUTATIONA(4,6) gives the result 4096.
PERMUTATIONA(2,5) gives the result 32.