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
FACTDOUBLE
The FACTDOUBLE function returns the double factorial of a number.
FACTDOUBLE(fact-num)
fact-num: A number value. fact-num must be greater than or equal to –1. Values in the range –1 to 1 return 1. Any decimal part of fact-num is ignored.
Notes
For an even integer, the double factorial is the product of all even integers less than or equal to the given integer and greater than or equal to 2. For an odd integer, the double factorial is the product of all odd integers less than or equal to the given integer and greater than or equal to 1.
Examples |
---|
=FACTDOUBLE(4) returns 8, the product of 2 and 4. =FACTDOUBLE(4.7) returns 8, the product of 2 and 4. The decimal portion is ignored. =FACTDOUBLE (10) returns 3,840, the product of 2, 4, 6, 8, and 10. =FACTDOUBLE(1) returns 1, because all numbers between -1 and 1 return 1. =FACTDOUBLE(-1) returns 1, because all numbers between -1 and 1 return 1. =FACTDOUBLE (7) returns 105, the product of 1, 3, 5, and 7. |