Basic Overview
Description | Calculates the values by accumulating the values of the Node along the time axis, summing them up. |
Signature | RUNNINGSUM(Node) |
Parameters | - Node: Input node, specified using the node name in single quotes (e.g. 'Profit')
|
Example
Input Node
Year | Profit |
2015 | 1 |
2016 | 2 |
2017 | 2 |
Output RUNNINGSUM('Node')
Year | Profit |
2015 | 1 |
2016 | 3 |
2017 | 5 |