Functions
FACT
Factorial of a number
Try it
When to use it
When should I use FACT?
Use FACT to compute the factorial of a non-negative integer; required when calculating permutations, combinations, or probability distributions.
Used in
Syntax
FACT(number)Examples
=FACT(3) // => 6
=FACT(6) // => 720
=FACT(0) // => 1