Power Query
published
Search
⌃K

Number.Permutations

Number.Permutations

Returns the number of permutations.
function (optional setSize as nullable any, optional permutationSize as nullable any) as nullable any

Description

Returns the number of permutations that can be generated from a number of items, setSize, with a specified permutation size, permutationSize.

Category

Number.Operations

Examples

Find the number of permutations from a total of 5 items in groups of 3.
Number.Permutations(5, 3)
60