Let's say there is a report to compare charges with adjustments that outputs to excel, such that each row has the following fields:
- Account Number
- charge date
- Original item number
- Adjusted Item number
- Original Qty
- Adjusted Qty
- Original amount
- Adjusted amount
- Original Post date
- Adjusted Post date
I need to help a user create a view in Excel that helps them spot changes in each record. She wants it to show each record in two rows like this:
Account | Date | O. Item | O. Qty | O. Amount | O. Post | | A. Item | A. Qty | A. Amount | A. Post
Is there anything built into Excel to allow you to group records like this? VBA is not an option in this case.
It's okay if the cells under account and date duplicate those values, if that makes it easier. Bonus points if you can get some kind of alternating row effect that helps delimit each record (that part I can do on my own in vba later if I have to).