RANGE
The RANGE function refers to the values of a node between the specified start and end periods. We can use this function to find the values of certain periods.
Syntax
.RANGE(start_index, end_index) - > [number]
Arguments
Remarks
This function can only be used after refering a node for which this calculation needs to be done as shown below in the example.
Example
Consider a scenario where we have interest payments for months Jan to Dec. Our objective is to calculate the interest paid in the months April to June.
To achieve this, the following formula should be written in the [Range Interest payments] node:
SUM
(
[Interest payments]
.
Range
(4,6))
Result
Last updated