RUNNINGPROD
Basic Overview
Description | Calculates the values by accumulating the values of the Node along the time axis, multiplying them. |
Signature | RUNNINGPROD(Node) |
Parameters |
|
Example
Input Node
Year | Profit |
2015 | 1.1 |
2016 | 1.2 |
2017 | 1.2 |
Output RUNNINGPROD('Node')
Year | Profit |
2015 | 1.1 |
2016 | 1.32 |
2017 | 1.584 |