FACT
Category: Math & numeric
Overview
Description | Returns the factorial of a number. The factorial of a number is equal to 1*2*3*...* number. Use this when you need to compute the factorial of node values, for example in combinatorial calculations or probability models. |
Syntax |
|
Parameters | Node: An input node with values to calculate factorial. |
Limitations |
|
Examples
Factorial of integer values
This example computes the factorial of each value in the input node.
Input node: Node
Year | Value |
|---|---|
2025 | 0 |
2026 | 3 |
2027 | 5 |
2028 | 7 |
Formula: FACT('Node')
Year | → FACT Result |
|---|---|
2025 | 1 |
2026 | 6 |
2027 | 120 |
2028 | 5040 |