printing

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

Guest

is there a way to print worksheets in a workbook to different printers and retain the setting?
 
Hi Moe

With VBA you can change the activeprinter and print the sheet.
And set it back to your default

You can change the activeprinter to the printer you want like this
Application.ActivePrinter = "hp officejet k series on Ne00:"

To know the names of your pinters
Change to it in the ctrl P dialog (Cancel after you choose the printer )
and run this so you know the name

Sub nameprinter()
MsgBox Application.ActivePrinter
End Sub

If you print with code then look at Printout in the VBA help
You can fill in the name of the printer then
 

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