small printer

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

Guest

I frequently have a need for just a small section of a spreadsheet to be printed and don't want to waste an entire sheet of paper. a 3 inch wide receipt printer would work well. And can i set the large printer as my default printer, and write in a macro to switch to the other printer and print a particular range ?
 
Bear

Turn on the macro recorder when changing printers.

I got this code when recording.....

Sub Macro3()
'
' Macro3 Macro
' Macro recorded 7/22/2004 by Gord Dibben
'

'
Range("A1:D17").Select
Application.ActivePrinter = "HP DeskJet 1200C/PS on LPT1:"
Selection.PrintOut Copies:=1, ActivePrinter:="HP DeskJet 1200C/PS on
LPT1:" _
, Collate:=True
End Sub

Gord Dibben Excel MVP
 

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