Macro for changing print settings

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

Guest

I have a macro for converting info off of a large sheet (Print features
landscape with legal paper) to info on a small sheet.

I need a macro to change the print settings back to Portrait & regular paper.

Thanks
 
Have you tried recording a macro, changing the print settings, stop the
recording and view the results?
 
I guess it would be like this:

Sub PrintQuote()

With ActiveSheet.PageSetup
.Orientation = xlPortrait
.PaperSize = xlPaperLetter
End With

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

Back
Top