Hi All,
Here's the question that I have. My file does essentially look like this:
| Person 1 | XX |
| Person 2 | YY |
| Person 3 | ZZ |
Single rows for each record.
I now want to add specific data "blocks" to those rows, so the result would basically look like this:
| Person 1 | XX | 123 |
| | | 456 |
| | | 789 |
| Person 2 | YY | 123 |
| | | 456 |
| | | 789 |
| Person 3 | ZZ | 123 |
| | | 456 |
| | | 789 |
So I'm adding the "block" with 123; 456; 789 for every single record and the added rows are blank, aside from the information in the "block".
This is done easily manually, but the set I am looking at has a couple thousand rows, so I'd obviously prefer a smarter solution 🙂
Thank you!