LAG returns a value from a preceding position within the specified dimension.
You could use LAG to calculate how this month's earnings compare to last year's monthly earnings.
Syntax
LAG(Value to offset, Offset amount, Substitute value [, Non-positive behavior, List])
Arguments
| Argument | Data Type | Description |
| Value to offset | Number, Boolean, date, time period, list, or text | Value to replace with a value from a different time period. See the Calculation engine functionality differences section for the use of a non-numeric argument in the Classic engine. |
| Offset amount | Number | Number of positions to move from the current reference value:
|
| Substitute value | Same as Value to offset | Value to return if the Offset amount specifies a position outside or beyond the current reference value. Also used for non-positive offsets if you use the SEMISTRICT or STRICT keywords for the Non-positive behavior argument. |
| Non-positive behavior (optional) | Keyword | Determines how the LAG function uses the Substitute value argument. |
| List (Polaris only) | List | The list over which the function should operate. The target line item must be dimensioned with any dimension compatible with this list. You must provide a Non-positive behavior keyword to use LAG on a list. See Calculation engine functionality differences. |
The LAG function returns a result of the same data type as the Value to offset argument.
The List argument is optional. If you omit it, the function defaults to the Time dimension. If you include it, you can use any dimension that is compatible with the line item.
Non-positive behavior keywords
| Keyword | Description |
| NONSTRICT | The default keyword if you omit the Non-positive behavior argument. Returns the Value to offset if the Offset amount is positive, negative, or zero. |
| SEMISTRICT | Returns the Value to offset if the Offset amount is positive or zero. |
| STRICT | Returns the Value to offset if the Offset amount is positive. |
Calculation engine functionality differences
In Polaris:
- Any number used for the Offset amount argument is rounded to the nearest integer. A value of NaN (Not a Number) for the Offset amount argument returns the Substitute value argument.
- You can use LAG with any dimension except Versions. In the Classic Engine, you can use this function only with a time dimension.
In the Classic Engine:
- You can use non-numeric Value to offset arguments, but only when the Offset amount is a constant. Otherwise, an error message displays.
- Any number used for the Offset amount argument is rounded toward zero. A value of NaN is equivalent to 0.
Syntax example
LAG(Value to offset, 2, 0)
| Jan | Feb | Mar | Apr | May | Jun | |
| Value to offset | 3,000 | 1,000 | 2,000 | 7,000 | 2,500 | 3,000 |
| LAG 1 | 0 | 0 | 3,000 | 1,000 | 2,000 | 7,000 |
In this example, the LAG 1 line item contains the formula above. This means it returns the value from two periods before.
Since for Jan and Feb, two periods before the cells are outside of the module’s time range, the formula returns the Substitute value of 0. The function does not contain the Non-positive behavior argument, so the default behavior is NONSTRICT.
Additional information
If the period LAG specifies is outside of the module's time range, LAG returns the value of the substitute value argument.
Examples
General example
In this example, the Lag by two periods line item contains a formula that returns the Value to offset from two periods prior.
| Jan | Feb | Mar | Apr | May | Jun | |
| Value to offset | 3,000 | 1,000 | 2,000 | 7,000 | 2,500 | 3,000 |
| Substitute value | 10 | 1 | 6 | 1 | 2 | 5 |
Lag by two periodsLAG(Value to offset, 2, Substitute value) | 10 | 1 | 3,000 | 1,000 | 2,000 | 7,000 |
When the Offset amount specifies a period that falls outside the time range, LAG returns the Substitute value amount, as shown in Jan and Feb columns.
The formula does not contain the Non-positive behavior argument, so it uses the default behavior, NONSTRICT.
Example with a constant offset
In this example, the LAG with constant offset line item contains the formula above. This means it returns line item from two periods before each cell.
If the Substitute value amount falls outside the model time range, the value from the Value to offset row in the current period is used, as shown in Jan and Feb columns. The formula does not contain the Non-positive behavior argument, so it uses the default behavior, NONSTRICT.
| Jan | Feb | Mar | Apr | May | Jun | |
| Value to offset | 3,000 | 1,000 | 2,000 | 7,000 | 2,500 | 3,000 |
| Substitute value | 10 | 1 | 6 | 1 | 2 | 5 |
LAG with constant offsetLAG(Value to offset, 2, Substitute value) | 10 | 1 | 3,000 | 1,000 | 2,000 | 7,000 |
Example of different non-positive behavior keywords
In this example, you can see how the different keywords for the Non-positive behavior argument change the results.
| Jan | Feb | Mar | Apr | May | Jun | |
| Value to offset | 1 | 2 | 3 | 4 | 5 | 6 |
| Offset amount | 0 | -1 | 0 | 1 | 0 | 1 |
| Substitute value | 100 | 200 | 300 | 400 | 500 | 600 |
Semistrict behaviorLAG(Value to offset, Offset amount, Substitute value, SEMISTRICT) | 1 | 200 | 3 | 3 | 5 | 5 |
Strict behaviorLAG(Value to offset, Offset amount, Substitute value, STRICT) | 100 | 200 | 300 | 3 | 500 | 5 |
Nonstrict behaviorLAG(Value to offset, Offset amount, Substitute value, NONSTRICT) | 1 | 3 | 3 | 3 | 5 | 5 |