Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
Number.Permutations(setSize as nullable number, permutationSize as nullable number) as nullable number
About
Returns the number of permutations that can be generated from a number of items, setSize
, with a specified permutation size, permutationSize
.
Example 1
Find the number of permutations from a total of 5 items in groups of 3.
Usage
Number.Permutations(5, 3)
Output
60