Hey all,
I have two reports that need printing, one showing the full record ID, the other showing the first 5 digits. I'm basing the reports off of the same query, and what I would like to do is something like the following pseudo-code:
Is that a possibility, or am I stuck printing Report A for all records, then Report B for all records? I'm trying to prevent the user from manually having to sort the printed reports, but it doesn't seem like it'd be much of an easy task to print in this manor.
Any ideas?
I have two reports that need printing, one showing the full record ID, the other showing the first 5 digits. I'm basing the reports off of the same query, and what I would like to do is something like the following pseudo-code:
Code:
do until rst.eof
Print report A for record 1
Print report B for record 1
rst.movenext
Loop
Any ideas?