Setting the Default Print Preview Zoom Factor

Written by Allen Wyatt (last updated June 26, 2018)
This tip applies to Word 97, 2000, 2002, and 2003


1

Dudley noticed that when he clicks on Print Preview, the resulting display is zoomed at a 33% rate. He was wondering if it is possible to have Word display the preview at, perhaps, a 50% zoom factor instead.

The short answer is that it isn't possible. Why? Because the hard-wired starting point for Print Preview is to use a "Whole Page" zoom factor. This is because Print Preview is designed to let you see what the page will look like when printed, not necessarily to read what is on that page. There is no way to change this default zoom factor setting in Print Preview itself.

There are workarounds, however. The "Whole Page" zoom factor can vary in size, depending on the size of the actual page you are displaying and depending on the size of the program window you are using to display Word. Thus, if you maximize the program window, you end up with more space in which to display the page in Print Preview. This means that Print Preview's "Whole Page" zoom factor doesn't need to shrink the page as much in order to display the whole page.

A logical extension of this is that you could also reduce the shrinkage by making sure that you are using the largest screen resolution possible in Windows. Larger screen resolutions allow you to put more information on the screen, and therefore less shrinkage is needed in Print Preview.

The other possible workaround is to create a macro that will display Print Preview for you. The macro could be assigned to a shortcut key or a toolbar button for easy use. Here's an example of a macro that will invoke Print Preview and then set the zoom factor to 50%.

Sub MyPrintPrev()
    With ActiveWindow.View
        .Type = wdPrintPreview
        .Zoom.Percentage = 50
    End With
End Sub

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (494) applies to Microsoft Word 97, 2000, 2002, and 2003.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Using the EOMONTH Function

If you need to determine the date of the last day in a month, it's hard to beat the flexibility of the EOMONTH function. ...

Discover More

Getting Rid of the Layout Options Context Menu

Do Word's attempts to be helpful drive you nuts? Here's a way that you can turn off at least some of the helpfulness.

Discover More

Workbook Loses All Conditional Formatting

Workbooks created in very old versions of Excel can, at times, have issues when opened in later versions of the program. ...

Discover More

The First and Last Word on Word! Bestselling For Dummies author Dan Gookin puts his usual fun and friendly candor back to work to show you how to navigate Word 2013. Spend more time working and less time trying to figure it all out! Check out Word 2013 For Dummies today!

More WordTips (menu)

Print Preview Freezes Word

It can be frustrating if the Word program freezes when you are trying to work with a document. If this happens to you, ...

Discover More

Toggling Print Preview

Need to easily switch back and forth between print preview and your document? Here's a quick shortcut key you can use to ...

Discover More

Multi-Page Print Preview

Many users rely on Print Preview to show them what their printout will look like. When using Print Preview, you aren't ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 1 + 1?

2017-10-11 07:38:11

Bob

I'm trying to make it work in office12 excel.

Sub MyPrintPrev()
With ActiveWindow.View
.Type = wdPrintPreview
.Zoom.Percentage = 50
End With
End Sub

Compile error: With object must be user-defined type, Object, or Variant


Sub MyPrintPrev()
ActiveWindow.View.Zoom.Percentage = 50
End Sub
Compile error: Invalid qualifier


Sub MyPrintPrev()
ActiveWindow.Zoom = 50
End Sub
This works, but cannot be applied to printpreview


This Site

Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.