Hi,
I am trying to generate rows based on a gap found between two dates while keeping the original data from the first date. Consider the following set of data:
| date | x | y |
| 2021-01-20 | 0 | 1 |
| 2021-01-21 | 0 | 1 |
| 2021-02-10 | 1 | 2 |
| 2021-02-11 | 1 | 2 |
| 2021-02-12 | 1 | 2 |
| 2021-03-02 | 1 | 1 |
What would a best practice be to only generate rows for the missing dates? These generated rows should have the same x and y values as the first date. So for example '2021-01-22' until '2021-02-09' would be 0 1.
I have been able to identify the start of the gap on the same row with a Multi-Row Formula tool which I then intended to use in some sort of condition to feed into the Generate Rows tool. Refer to the attached example workflow. I am not sure how to leverage the Generate Rows tool to achieve the desired result. Perhaps I don't even need to use a Multi-Row Formula tool?