change the print preview size?

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

Guest

How can I change the print preview in Word so that it always comes up the
percentage size that I want? It annoys me unreasonably when the print
preview always comes up 40% or something tiny like that.
 
Print Preview should be saving your Zoom setting. If it is not, you'll need
a macro for the purpose.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
And that macro is:

Sub FilePrintPreview()
'
' FilePrintPreview Macro
' Displays full pages as they will be printed
'
ActiveDocument.PrintPreview
ActiveWindow.View.Zoom.Percentage = 100

End Sub

Where '100' is the percentage zoom you require


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top