print setting default - number of copies

K

Kate

For some reason an excel sheet someone else created has a default print
setting of 10 copies. Every time I need to remember to change it to 1 copy,
or I get a stack of them at the printer. It doesn't remain at 1 copy as a
default if I change it, print, and then save the document. Any ideas?
 
H

HelpExcel.com

Kate,

You could use code similar to the following to accomplish this:

Sub changeNumofCopies()

ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True

End Sub
 

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