Number.Combinations
This function calculates the total number of distinct combinations that can be generated from a given list of items. It takes two parameters: setSize, which represents the total number of items in the...
Number.Combinations(setSize as nullable number, combinationSize as nullable number) as nullable number
This function calculates the total number of distinct combinations that can be generated from a given list of items. It takes two parameters: setSize, which represents the total number of items in the list, and combinationSize, which indicates the number of items in each combination.