numbering

D

Dexzy

Can I print a single document 75 times and have a different number appear in
a specific cell? I want to print multiple copies of a receipt and use a
different number on each
 
A

Andy Brown

Can I print a single document 75 times and have a different number appear
in
a specific cell?

Yes, with a macro, such as

Sub Number_and_Print()
Range("A1") = 1
Do Until Range("A1") = 76 '(or 75, I can't remember which)
ActiveWindow.SelectedSheets.PrintOut Copies:=1
Range("A1") = Range("A1") + 1
Loop
End Sub

HTH,
Andy
 

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