Macro to select Quantity Printing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want a macro to print a worksheet with the provision to user define the
number of copies

thank you

Mald
 
the printout command has a copies argument. You can query the user for the
number of copies, then pass that as a variable to the printout command
copies argument.
 
pCnt = InputBox("How Many Copies")
ActiveWindow.SelectedSheets.PrintOut Copies:=pCnt,
Collate:=True
-----Original Message-----
I want a macro to print a worksheet with the provision to
user define the number of copies
 
thanks tom

Tom Ogilvy said:
the printout command has a copies argument. You can query the user for the
number of copies, then pass that as a variable to the printout command
copies argument.
 

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

Back
Top