I have a table of timeseries data, where each entry is associated with a date interval. Is there a way to combine and merge different timeseries into a single time series?
Given input Table1:
|Role|From |To |Value|
|A |01.01.2017|15.01.2017| 1|
|A |16.01.2017|01.02.2017| 2|
|A |02.02.2017|28.02.2017| 2|
|B |16.01.2017|05.03.2017| 5|
|B |06.03.2017|31.03.2017| 7|
Can I transform this automatically using PowerQueryinto the following (note the use of merged intervals):
|From|01.01.2017|16.01.2017|02.02.2017|01.03.2017|06.03.2017|
|To |15.01.2017|01.02.2017|28.02.2017|05.03.2017|31.03.2017|
|A | 1| 2| 2| | |
|B | | 5| 5| 5| 7|
|Sum | 1| 7| 7| 5| 7|
Here is a version of your code. It is a little shorter and probably more straightforward. Also it returns exactly the same result as in the example.