TRUECALC
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

science

Syntax

FACT(number)

Examples

=FACT(3) // => 6
=FACT(6) // => 720
=FACT(0) // => 1

On this page