नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
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