Hi,
I have a Module A with the following line items, format, and data:
value(Format = Number) | start(Format = Date (mm/dd/yyyy)) | end(Format = Date (mm/dd/yyyy)) |
101 | 1/1/2019 | 2/1/2019 |
201 | 3/1/2019 | 4/1/2020 |
301 | 5/1/2020 | blank |
I have another module B with Time Dimension and a Line item - value_over_months that will be mapped to module A and expected data to be as given below:
| Jan-2019 | Feb-19 | Mar-19 | Apr-19 | May-19 | Jun-19 | Jul-19 | Aug-19 | Sep-19 | Oct-19 | Nov-19 | Dec-19 | Jan-20 | Feb-20 | Mar-20 | Apr-20 | May-20 | Jun-20 | Jul-20 | Aug-20 | Sep-20 | Oct-20 | Nov-20 | Dec-20 |
value_over_months | 101 | 101 | 201 | 201 | 201 | 201 | 201 | 201 | 201 | 201 | 201 | 201 | 201 | 201 | 201 | 201 | 301 | 301 | 301 | 301 | 301 | 301 | 301 | 301 |
How can I achieve this?