This function, when calculated, returns the factorial of the specified number.
Fact([Number])
Where:
Number is the number or the reference to a number, that you want to find the factorial.
Rule | Meaning |
---|---|
Fact(4) | The Fact function will multiply the numbers between 1 and 4 together, to obtain the factorial. In this example the Fact function would perform the following calculation: 1 * 2 * 3 * 4 |
Number | Result of the Fact function |
---|---|
4 | 24 |
5.8 | 720 |
0 | 1 |