FACT

The FACT function returns the factorial of a number.

Syntax

FACT(
    number
)

Parameters
  • number: Number from which you want to calculate the factorial.
Returned value

The FACT function returns an integer.

Additional Information

number must be a number greater than or equal to zero and less than or equal to 170 (if it takes the value zero, the function will return 1). Outside this range an error will be returned. If this argument is not an integer, it is truncated and the factorial of its integer part is returned.

Examples

FACT function. Example of use

Category
Mathematical and trigonometric
Submitted by admin on Tue, 12/04/2018 - 12:33