Formulas and Functions Help
- Welcome
-
- ACCRINT
- ACCRINTM
- BONDDURATION
- BONDMDURATION
- COUPDAYBS
- COUPDAYS
- COUPDAYSNC
- COUPNUM
- CUMIPMT
- CUMPRINC
- CURRENCY
- CURRENCYCODE
- CURRENCYCONVERT
- CURRENCYH
- DB
- DDB
- DISC
- EFFECT
- FV
- INTRATE
- IPMT
- IRR
- ISPMT
- MIRR
- NOMINAL
- NPER
- NPV
- PMT
- PPMT
- PRICE
- PRICEDISC
- PRICEMAT
- PV
- RATE
- RECEIVED
- SLN
- STOCK
- STOCKH
- SYD
- VDB
- XIRR
- XNPV
- YIELD
- YIELDDISC
- YIELDMAT
-
- AVEDEV
- AVERAGE
- AVERAGEA
- AVERAGEIF
- AVERAGEIFS
- BETADIST
- BETAINV
- BINOMDIST
- CHIDIST
- CHIINV
- CHITEST
- CONFIDENCE
- CORREL
- COUNT
- COUNTA
- COUNTBLANK
- COUNTIF
- COUNTIFS
- COVAR
- CRITBINOM
- DEVSQ
- EXPONDIST
- FDIST
- FINV
- FORECAST
- FREQUENCY
- GAMMADIST
- GAMMAINV
- GAMMALN
- GEOMEAN
- HARMEAN
- INTERCEPT
- LARGE
- LINEST
- LOGINV
- LOGNORMDIST
- MAX
- MAXA
- MAXIFS
- MEDIAN
- MIN
- MINA
- MINIFS
- MODE
- NEGBINOMDIST
- NORMDIST
- NORMINV
- NORMSDIST
- NORMSINV
- PERCENTILE
- PERCENTRANK
- PERMUT
- POISSON
- PROB
- QUARTILE
- RANK
- SLOPE
- SMALL
- STANDARDIZE
- STDEV
- STDEVA
- STDEVP
- STDEVPA
- TDIST
- TINV
- TTEST
- VAR
- VARA
- VARP
- VARPA
- WEIBULL
- ZTEST
- Copyright
COMBIN
The COMBIN function returns the number of different ways you can combine a number of items into groups of a specific size, ignoring the order within the groups. Both arguments are number values.
COMBIN(total-items, group-size)
total-items: The total number of items. total-items must be greater than or equal to 0. Any decimal part of total-items is ignored.
group-size: The number of items combined in each group. group-size must be greater than or equal to 0. Any decimal part is ignored.
Notes
Combinations are not the same as permutations. The order of the items in a group is ignored for combinations but not for permutations. For example, (1, 2, 3) and (3, 2, 1) are the same combination but are different permutations. If you want the number of permutations, use the PERMUT function.
Examples |
---|
=COMBIN(3, 2) returns 3, the number of unique groups you can create if you start with 3 items and group them 2 at a time. For example, if the group consisted of 1, 2, and 4, the possible unique groups are: 1 and 2, 1 and 4, 2 and 4. =COMBIN(3.2, 2.3) returns 3. Fractional parts are dropped. =COMBIN(5, 2) and =COMBIN(5, 3) both return 10. |