I'm not sure my question title gives this justice but here goes:
I have data that looks like this:
02 A1 A2 A3 A4 AZ
02 A1 A2 A3 A4 AY
02 A1 A2 A3 A4 AW
02 A1 A2 A3 A4 AX
04 B1 B2 B3 B4 BZ
04 B1 B2 B3 B4 BY
04 B1 B2 B3 B4 BW
04 B1 B2 B3 B4 BX ... and so on
My Report needs to view data like this:
02
A1 AZ
A2 AY
A3 AW
A4 AX
<Page Break>
04
B1 BZ
B2 BY
B3 BW
B4 BX ... And so on
I can get it to page properly and row grouping gets me the A# and B# elements in the single column for each grouping. However, when trying to get the AZ thru AX and BZ thru BX elements to display on their appropriate row, I only get the very first element repeated 4 times.
I've tried different grouping combinations and have not had any success. Anyone know how to solve this, even if it means reworking the data query to get a different result set, I'd try anything at this point.
Thanks