Returns the number of combinations for a given number of items.
تعمل هذه الدالة في Google Sheets كما تعمل في Excel تمامًا — بالصياغة والوسائط نفسها.
COMBIN(number, number_chosen)The COMBIN function calculates the total number of ways to select a subset of items from a larger set, where the order of selection does not matter. It is mathematically equivalent to the binomial coefficient formula nCr.
=COMBIN(5, 2)النتيجة: 10
Calculates the number of ways to choose 2 items from a set of 5.
No, COMBIN calculates combinations where order is irrelevant; use PERMUT if order matters.