Hello everyone,
I have a form on witch users can select customers that of who they want to print address stickers of. They can select them from a drop down box, then enter the amount of stickers they want, and click on 'add'. Then in a temp table is written the customer ID and the amount of stickers they want of that customer.
When they click on print, a report is opened. It has a recordsource with a query that selects all the customers. the report is opened on this way:
docmd.openreport "etiket1",wherecondition:=strwherecondition
in strwherecondition the records are filtered with the customer ID's in the temp table, so it looks like:
"[c_id] = 121 OR [c_id] = 3"
Everything is working just fine, exept that I don't know how to implement the amount of stickers that must be printed. for example, I want to print 3 stickers of customer 121 and 5 of customer 3. How can I tell access that in the report the sticker of customer 121 must be print 3 times? Any ideas on how to implement this?
any help is welcome!!
greetz,
Tom
I have a form on witch users can select customers that of who they want to print address stickers of. They can select them from a drop down box, then enter the amount of stickers they want, and click on 'add'. Then in a temp table is written the customer ID and the amount of stickers they want of that customer.
When they click on print, a report is opened. It has a recordsource with a query that selects all the customers. the report is opened on this way:
docmd.openreport "etiket1",wherecondition:=strwherecondition
in strwherecondition the records are filtered with the customer ID's in the temp table, so it looks like:
"[c_id] = 121 OR [c_id] = 3"
Everything is working just fine, exept that I don't know how to implement the amount of stickers that must be printed. for example, I want to print 3 stickers of customer 121 and 5 of customer 3. How can I tell access that in the report the sticker of customer 121 must be print 3 times? Any ideas on how to implement this?
any help is welcome!!
greetz,
Tom