Returns the factorial of a number (i.e. number!). The factorial of the number is calculated as 1*2*3*4* ... * number. The factorial of zero returns 1 by definition.
Syntax
Remarks
The decimal points (if any) are truncated before calculating the factorial of the given number.
Examples
|
Formula |
Result |
|
=FACT(5.3) |
120 |
|
=FACT(0.44) |
1 |
|
=FACT(10) |
3628800 |
Possible Errors
|
Errors |
Meaning |
|
#N/A! |
|
|
#NAME! |
|
|
#VALUE! |
|
|
#REF! |
|
Similar Functions