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

D

D Hafer - TFE

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.
 
O

Ofer

Use code to print two copies, the simple way

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