PM
Basic Overview
Description | Shifts the input node Node one month into the future while retaining all other dimensions. |
Signature | PM(Node) |
Parameters |
|
Example 1
Input Profit
Quarter | Profit |
2019-01 | 35 |
2019-02 | 42 |
2019-03 | 47 |
Output PM('Profit')
Year | Profit |
2019-02 | 35 |
2019-03 | 42 |
2019-04 | 47 |
Example 2
SHIFT or Nested PM expressions can be used to move Nodes further into the future.
Input Profit
Year | Profit |
2019-01 | 35 |
2019-02 | 42 |
2019-03 | 47 |
Output PM(PM('Profit'))
Year | Profit |
2019-03 | 35 |
2019-04 | 42 |
2019-05 | 47 |