FACT
Basic Overview
Description | Returns the factorial of a number. The factorial of a number is equal to 1*2*3*...* number. |
Signature | FACT(Node) |
Parameters |
|
Limitations |
|
Example
Input:
Node
Year | Measure |
---|---|
2021 | 0 |
2022 | 3 |
2023 | 5 |
2024 | 7 |
Using FACT('Node') would produce:
Year | Measure |
---|---|
2021 | 1 |
2022 | 6 |
2023 | 120 |
2024 | 5040 |