duplicate a copies of a report based on a field condition = Yes

G

Guest

I'm generating labels from a customer order database. The order table allows
customers to "Split" an order of food, requiring my DB to generate 2 lables
for the customer.

I'd like to autogenerate the labels (in order based on customer name) in a
nightly batch process, but I can't figure out how to print 2 copies based on
the field cSplit = Yes.

Any help would be appreciated.
 
G

Guest

Use code to print two copies, the simple way

If cSplit = Yes then
docmd.Openreport "ReportName"
End if
docmd.Openreport "ReportName"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top