Here is an example of the report I can pull:
EDIT: After posting I realized the merged columns did not come through. The "FRUIT: xxxx" cells are merged across all of the data headers in the report:
| Fruit: APPLES | | |
random data | | |
more random data | | |
| | |
| Account Number | Code | Total |
| 10000 | x | 100 |
| 10001 | y | 500 |
| 10002 | z | 200 |
| 10003 | s | 200 |
| 10004 | a | 250 |
| | | |
| Fruit: PEARS | | |
| other random data | | |
| | | |
| Account Number | Code | Total |
| 10000 | y | 854 |
| 10005 | n | 12 |
I want to be able to create a column all the way to the left from the "Fruit: xxxx" merged data. It should end up looking like this:
| Fruit | Account Number | Code | Total |
| Apples | 10000 | x | 100 |
| Apples | 10001 | y | 500 |
| Apples | 10002 | z | 200 |
| Apples | 10003 | s | 200 |
| Apples | 10004 | a | 250 |
| Pears | 10000 | y | 854 |
| Pears | 10005 | n | 12 |
Any thoughts on how to accomplish this?