Hello need some advise.
I have following on the table:
ID Name CopiesPrint
1 Jim 10
23 Sam 2
56 John 3
Report Source Query:
select id, name, copiesPrint from table1
I would like to print 10 copes of id 1 Jim and 2 copies of id 23 Sam and so on.
I tried this on report activate event
DoCmd.PrintOut Copies:=CopiesPrint
It prints 10 copies of id 1 jim and stops. How do i print 10 copies of id 1 JIm and proceed to next?
thanks
I have following on the table:
ID Name CopiesPrint
1 Jim 10
23 Sam 2
56 John 3
Report Source Query:
select id, name, copiesPrint from table1
I would like to print 10 copes of id 1 Jim and 2 copies of id 23 Sam and so on.
I tried this on report activate event
DoCmd.PrintOut Copies:=CopiesPrint
It prints 10 copies of id 1 jim and stops. How do i print 10 copies of id 1 JIm and proceed to next?
thanks