Written by Allen Wyatt (last updated June 26, 2018)
This tip applies to Word 97, 2000, 2002, and 2003
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:
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.
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!
Many users rely on Print Preview to show them what their printout will look like. When using Print Preview, you aren't ...
Discover MoreIt can be frustrating if the Word program freezes when you are trying to work with a document. If this happens to you, ...
Discover MoreNeed to easily switch back and forth between print preview and your document? Here's a quick shortcut key you can use to ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
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
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments