- What's the difference between COMBIN and PERMUT?
- COMBIN returns the number of combinations—ways to select items where order doesn't matter. PERMUT returns permutations—ways where order does matter. For example, choosing Alice and Bob is the same combination as Bob and Alice (1 combination), but they represent 2 different permutations (1st-2nd vs 2nd-1st). COMBIN(5,2)=10 but PERMUT(5,2)=20.
- Can COMBIN work with decimal numbers or fractional values?
- No; COMBIN requires integer arguments. If your data contains decimals, convert them first using INT() to truncate or ROUND() to round. For example, =COMBIN(ROUND(A1,0),ROUND(B1,0)) will round both arguments to whole numbers before calculating combinations.
- Why do I get #NUM! error when my formula looks correct?
- The most common cause is that your second argument (number_chosen) exceeds your first argument (number)—you cannot choose more items than you have. Verify the first argument is greater than or equal to the second. Also check that neither argument is negative.
- What's a practical business use of COMBIN?
- COMBIN answers questions like: How many ways can we select 2 reps from a team of 8 for joint calls? (28 ways). How many possible samples of 3 orders can we audit from a batch of 100? (161,700 ways). It's invaluable for sampling strategies, lottery odds, team formations, regional matchups, and any scenario requiring 'in how many ways can we select X items from Y total?'