factorial

  • Thread starter Thread starter oshiroty
  • Start date Start date
Think there's a function FACT() which will calculate this

Check it up in Excel's Help

Example: FACT(5) = 120 (1*2*3*4*5)

(there's even a FACTDOUBLE function .. <g>)
 
As others have noted, Excel has a FACT() function. 171! is larger than
the largest floating point number that can be represented in IEEE double
precsion (used by Excel).
GAMMALN(n+1) = LN(FACT(n))
which can be used for n larger than 170.

Jerry
 
Back
Top