Hello guys,
i want to creat new rows into my table. The logic is: For each row look in column 2 (or cell 2) and compare it with the next row.
if its the same (for example "1" & "1" do nothing) if its not the same (for example "1" & "2") create new row between active/current row and next row.
i hope someone can help.
| Input | | | | Output | | |
| A | 1 | Dec 2017 | | A | 1 | Dec 2017 |
| A | 1 | Jan 2018 | | A | 1 | Jan 2018 |
| A | 2 | Dec 2017 | | A | 1 | Feb 2018 |
| A | 2 | Jan 2018 | | A | 2 | Dec 2017 |
| A | 3 | Dec 2017 | | A | 2 | Jan 2018 |
| A | 3 | Jan 2018 | | A | 2 | Feb 2018 |
| B | 1 | Dec 2017 | | A | 3 | Dec 2017 |
| B | 1 | Jan 2018 | | A | 3 | Jan 2018 |
| | | | | A | 3 | Feb 2018 |
| | | | | B | 1 | Dec 2017 |
| | | | | B | 1 | Jan 2018 |
| | | | | B | 1 | Feb 2018 |