I posted a question earlier that was solved but is no showing in my alerts for some reason. In the first question I asked how to add two dynamic null rows. Of course since then I have been trying to figure out how to duplicate my header row in one of those rows.
My data looks like this:
| Plan # | Type | Fund | Fund Name |
| 1234 | Buy | ABCD | Coffee Fund |
| 1234 | | ABCD | Total |
| | | | |
| | | | |
| 1234 | Buy | EFGH | Soda Fund |
| 1234 | | EFGH | Total |
| | | | |
| | | | |
| 3456 | Contribution | WXYZ | Whiskey Fund |
| 3456 | Repayment | WXYZ | Whiskey Fund |
| 3456 | Contribution | WXYZ | Whiskey Fund |
| 3456 | | WXYZ | Total |
I would like it to look like this:
| Plan # | Type | Fund | Fund Name |
| 1234 | Buy | ABCD | Coffee Fund |
| 1234 | | ABCD | Total |
| | | | |
| Plan # | Type | Fund | Fund Name |
| 1234 | Buy | EFGH | Soda Fund |
| 1234 | | EFGH | Total |
| | | | |
| Plan # | Type | Fund | Fund Name |
| 3456 | Contribution | WXYZ | Whiskey Fund |
| 3456 | Repayment | WXYZ | Whiskey Fund |
| 3456 | Contribution | WXYZ | Whiskey Fund |
| 3456 | | WXYZ | Total |
Can someone help me with this? Thanks!