Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Quickly Changing Document Windows.
Written by Allen Wyatt (last updated November 10, 2018)
This tip applies to Word 97, 2000, 2002, and 2003
If you routinely use several open documents to do you work, you already know that you can change between document windows by choosing the document name from the Window menu. You may not know, however, that there is a shortcut for changing windows. You can cycle through your documents by pressing either Ctrl+F6 or Shift+Ctrl+F6. The difference is that Ctrl+F6 cycles through the list of windows in a forwards direction, while Shift+Ctrl+F6.
If you would rather not take your hands off the mouse, you can create a macro that cycles through the windows. This macro can then be assigned to a button on one of your toolbars. The following macro will cycle forwards through the windows:
Sub ChangeWin()
On Error GoTo ChangeWinErr
Set bb = ActiveWindow.Next
If Windows.Count > 1 Then
bb.Activate
Exit Sub
End If
ChangeWinErr:
Windows(1).Activate
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 (967) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Quickly Changing Document Windows.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 today!
Want to return a paragraph's formatting back to it's pristine, unaltered state? You can do so by using the shortcut ...
Discover MoreWord provides a built-in shortcut to change the case of a text selection. Understanding how that shortcut works (and the ...
Discover MoreWant to get rid of almost everything on the screen except your document? Here's how to easily maximize what you see.
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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 © 2025 Sharon Parq Associates, Inc.
Comments