Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 686 Bytes

number-combinations.md

File metadata and controls

32 lines (21 loc) · 686 Bytes
description title
Learn more about: Number.Combinations
Number.Combinations

Number.Combinations

Syntax

Number.Combinations(setSize as nullable number, combinationSize as nullable number) as nullable number

About

Returns the number of unique combinations from a list of items, setSize with specified combination size, combinationSize.

  • setSize: The number of items in the list.
  • combinationSize: The number of items in each combination.

Example 1

Find the number of combinations from a total of 5 items when each combination is a group of 3.

Usage

Number.Combinations(5, 3)

Output

10