Repeating data lines

I have a report that prints the first group ok, but on the 2nd and subsequent groups, it’s printing the first detail line ok, but the remaining lines have the same values for every group when they should be different from one to the next. The underlying data looks ok:

            <Table>
                            <ShipmentId>333</ShipmentId>
                            <LineNumber>1         </LineNumber>
                            <UserDetailField1>A</UserDetailField1>
                            <UserDetailField2>B</UserDetailField2>
                            <UserDetailField3>C</UserDetailField3>
                            <UserDetailField4>D</UserDetailField4>
            <Table>
                            <ShipmentId>333</ShipmentId>
                            <LineNumber>2         </LineNumber>
                            <UserDetailField1>1</UserDetailField1>
                            <UserDetailField2>2</UserDetailField2>
                            <UserDetailField3>3</UserDetailField3>
                            <UserDetailField4>4</UserDetailField4>

Report output:
333
1
A
B
C
D

333
2
A
B
C
D

Must be a problem of passing the data… you can see that in the
logging if you enable it.

…NET? Data Bound? …

Paulchen

“Scott Moore” <scott.moore@scancod…> wrote in message
news:4961711112008181750@combit.net…

I have a report that prints the first group ok, but on the 2nd and
subsequent groups, it’s printing the first detail line ok, but the
remaining lines have the same values for every group when they should
be different from one to the next. The underlying data looks ok:

           <Table>
                           <ShipmentId>333</ShipmentId>
                           <LineNumber>1         </LineNumber>

A

B

C

D


333
2

1

2

3

4

Report output:
333
1
A
B
C
D

333
2
A
B
C
D