How do I change the default # of copies to 1 in a specific file?

B

Brenda

I have a file created by another user that is defaulting to print 7 copies
instead of 1. How can I change this default back for this file only?
Thank you!
 
J

Jim Rech

You might find something under Page Setup, Options. This varies with the
printer driver but in my case I found the copies controlled under Advanced
options for my driver.
 
J

JustinLabenne

I assume this file contains macros?

Sub PrintSheets()
ActiveWindow.PrintOut Copies:=1
End Sub

If it does, look for code similiar to the bit above, it may or may not
say copies, but look to see if anywhere in the same line as the
..PrintOut there is 7. That is quite possibly the cause.
 
Top