Written by Allen Wyatt (last updated June 30, 2020)
This tip applies to Word 2007, 2010, 2013, and 2016
For most purposes, Word allows you to issue commands and perform functions by using either the mouse or the keyboard. Unfortunately, Word does not provide "equal access" for all commands. For instance, it is relatively easy to zoom in or out using the mouse, but there is no easy way to do it using the keyboard.
Apparently, Microsoft feels that you can zoom simply by using whatever ribbon tools are necessary and then typing whatever percentage you desire. The steps to do this would be as follows:
Figure 1. The Zoom dialog box.
While this provides quite a bit of flexibility, it does not allow you to easily zoom in or out. If you want this ability in Word, the only way to get it is to create a macro and then assign the macro to a keyboard combination. For instance, the following macro will zoom into (enlarge) a document by 10%.
Sub MyZoomIn() Dim ZP As Integer ZP = Int(ActiveWindow.ActivePane.View.Zoom.Percentage * 1.1) If ZP > 500 Then ZP = 500 ActiveWindow.ActivePane.View.Zoom.Percentage = ZP End Sub
Notice that the macro only allows you to zoom in up to 500%. This is because Word allows you to only zoom that high, and any higher would generate an error. A slight variation on the same theme results in a macro I call MyZoomOut. It zooms out of (reduces) a document by 10%:
Sub MyZoomOut() Dim ZP As Integer ZP = Int(ActiveWindow.ActivePane.View.Zoom.Percentage / 1.1) If ZP < 10 Then ZP = 10 ActiveWindow.ActivePane.View.Zoom.Percentage = ZP End Sub
This macro sets the bottom boundary at 10%, which is the smallest you can go. Any smaller, and Word would generate an error again.
The final trick to make these macros really useful is to assign them to a keyboard combination. You can then quickly zoom in or out by 10% with a simple keystroke. How you assign a macro to a keyboard combination is covered in other issues of WordTips.
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 (9831) applies to Microsoft Word 2007, 2010, 2013, and 2016. You can find a version of this tip for the older menu interface of Word here: Zooming with the Keyboard.
Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2013. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word 2013 Step by Step today!
The Zoom tool is very useful to help you see all of your document information. Here's how to make sure you can see all ...
Discover MoreAs you develop a document, Word keeps track of certain statistics about the document itself. Here is how you can review ...
Discover MoreEver had the experience of setting some configuration option in Word, only to have the option revert to a different ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2020-12-31 22:54:08
Tarun Mahajan
I am getting Run-time error 91
Object Variable or With Block Variable not set
How to solve this error. If possoble please reply on my email id.
2020-06-30 14:43:44
Jim
When you show, for example, Alt+B, do you mean Alt+Shift+B? I'm Not a big problem to figure it out, but as written could be misconstrued ...
2020-06-30 07:48:24
Peter Stern
I did that, and for the keyboard shortcut I used <CTL>+ and <CTL><->, essentially emulating the built-in Acrobat function...I love to be able to standardize shortcuts among different programs.
2018-01-18 13:08:11
Ted Duke
There is also a Zoom option in the View Tab and a selectable percentage view slider at the lower right end of the Word window (similar in Outlook email.
2018-01-17 07:43:50
Thomas Wassel
While it is not "keyboard only", I find the simplest method is to hold the CTRL key and use my mouse wheel. Much easier than either method described above.
2016-11-19 06:02:18
Saeed
Very helpful Sir...
Thanks for sharing
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu 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 © 2023 Sharon Parq Associates, Inc.
Comments