Using 1 report to print an Invoice and a Delivery Note

C

Chris

I need to print the same report as an Invoice and as a Delivery Note. The
only difference between the two are a Text Label that has to change, stating
if the document is an Invoice or a Delivery Note. I need to do this with
Access 2000 VB. Does anybody have an idea how to do this? I also need to
know how to set the number of copies to be printed with VB.


Thx

Chris
 
D

Duane Hookom

I would create a table "tblCopies" with two fields [CopyNum] and
[CopyTitle]. Add the records:
1 Invoice
2 Delivery Note

Then add this table to the record source of your report and don't join it to
any other table. Add the two fields to your query grid. Set the first level
of Sorting and Grouping to [CopyNum] and create a header and footer. These
would replace previous Report Header and Footer sections. You can then add
these fields to your report and get one copy of each.
 

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