Hey guys,
I am challenging a certain problem at the moment. I have a report converted from a .pdf to .xlsx. However the PDF contained headers at every single page. What I would like to do is deleting these rows and adding the information from it to every single row related to it. Here is an Example:
| Account 100 | Cash |
| Date | Text |
| 01.01.2000 | Bank YX |
| 20.03.2000 | Bank XY |
| Account 200 | Inventory |
| Date | Text |
| 20.03.2000 | Table |
| 30.08.2000 | Pencils |
| 31.08.2000 | Laptops |
| 01.09.2000 | PC's |
| Account 300 | Buildings |
| Date | Text |
| 01.09.2000 | Building A |
| 01.09.2000 | Building B |
I would like to look it more like that:
| Account | Acc. Description | Date | Text |
| 100 | Cash | 01.01.2000 | Bank YX |
| 100 | Cash | 20.03.2000 | Bank XY |
| 200 | Inventory | 20.03.2000 | Table |
| 200 | Inventory | 30.08.2000 | Pencils |
| 200 | Inventory | 31.08.2000 | Laptops |
| 200 | Inventory | 01.09.2000 | PC's |
| 300 | Buildings | 01.09.2000 | Building A |
| 300 | Buildings | 01.09.2000 | Building B |
Is there any possible way to do that in alteryx? Thank you a lot.