G
Guest
I need to print 1 report for each record in a recordset. That set is based on
a query and the report on a different recordset - related by an ID.
I can't seem to get the code working on my form (based on the query) to
print the first record (ID) then move to the next, and so on, 'til it reaches
the end.
I can get it to print the first record - but the Link Criteria in the print
routine sez "=Me.ID"...which is the current record on the form, I need to
reference the next and so on...
Me.RecordsetClone
Do
....Print "Report"; Link = "Me.ID"...
Loop Until Me.RecordsetClone.EOF
Help, thanks in advance, N.
a query and the report on a different recordset - related by an ID.
I can't seem to get the code working on my form (based on the query) to
print the first record (ID) then move to the next, and so on, 'til it reaches
the end.
I can get it to print the first record - but the Link Criteria in the print
routine sez "=Me.ID"...which is the current record on the form, I need to
reference the next and so on...
Me.RecordsetClone
Do
....Print "Report"; Link = "Me.ID"...
Loop Until Me.RecordsetClone.EOF
Help, thanks in advance, N.