Hi guys, I'm new to Alteryx and couldn't figure out a way how to do this, maybe someone can help.
I have an input table that looks like the following:
| Location (header) |
| Berlin |
| Berlin |
| Munich |
| Munich |
| London |
| London |
I'd like to generate a new row whenever there's a new location (active row does not equal row -1) and copy the data from the first row (header). The Output should look like this:
| Location |
| Berlin |
| Berlin |
| Location |
| Munich |
| Munich |
| Location |
| London |
| London |
It would also be necessary to save every location in a new excel sheet (within the same workbook).
Thanks and kind regards!