Word.Tips.Net Welcome toWord.Tips.Net

Helpful Links

Tips.Net Home
WordTips Home

Ask a Word Question
Make a Comment

Tips.Net Store

WordTips FAQ
WordTips Premium

Learn Access Now

Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

Newest Tips

Changing Tabs Using the Ruler

Moving Drawing Objects

Standardizing Note Reference Placement

Selecting Printing of Color Pictures

Stubborn Foreign Languages

Sizing the Preview Pane

Moving Rows and Columns With the Mouse

 

Changing How Go To Works

Summary: You can force Word's Go To command to start with a cleen slate. (This tip works with Microsoft Word 97, Word 2000, Word 2002, and Word 2003.)

Subscriber Cheryl Christofferson recently wrote to complain about changes in Word that result in additional work when using the Go To feature. In earlier versions of Word (Word 95 and before), when the Go To dialog box was displayed, the target you wanted to "Go To" was automatically highlighted, so anything you typed (such as a new page number) automatically replaced what was there and you could easily jump to a new location. Starting with Word 97, however, the target in the Go To tab of the Find and Replace dialog box is not automatically selected. Instead the insertion point is at the beginning of the entry box, with your previous target following the insertion point. Thus, if you want to jump to a new page, you must erase the default target and then type your real target.

Apparently this also bothered several other subscribers, who agreed it was a dumb change on the part of Microsoft. Fortunately, you can modify your version of Word to start with a clean target for your Go To efforts by modifying the command used by Word. Simply follow these steps in Word 97 and later versions:

  1. Choose Macro from the Tools menu, and then Macros from the resulting submenu. Word displays the Macros dialog box.
  2. In the Macro Name box, enter EditGoTo as your macro's name. (That is a single word and must be spelled exactly as shown.)
  3. Click on the Create button. Word displays the VBA Editor, ready for you to put in your new macro. Notice, however, that the macro already contains some code, as follows:
    Sub EditGoTo()
    '
    ' EditGoTo Macro
    ' Jumps to a specified place in the active document
    '
        Dialogs(wdDialogEditGoTo).Show
    
    End Sub
    
    The reason for this is because you are redefining an existing Word command. The code shown is the code that Word normally executes for the Go To command.
  4. Replace the code that is shown with the following code:
  5. Sub EditGoTo()
    '
    ' EditGoTo Macro
    ' Jumps to a specified place in the active document
    '
        With Dialogs(wdDialogEditGoTo)
            .Destination = ""
            .Show
        End With
    End Sub
    
  6. Close the VBA Editor.

That's it. From now on when you pull up the Go To tab of the Find and Replace dialog box, the destination (target) of your jump will be blank.

Tip #653 applies to Microsoft Word versions: 97 | 2000 | 2002 | 2003

More Power! For some people, the prospect of creating Word macros can be scary. WordTips: The Macros can help you conquer your fears and you'll discover you're much more confident and productive as you make Word do exactly what you want. This is an invaluable source for learning macros. You are introduced to the topic in bite-sized chunks, pulled from past issues of WordTips. Learn at your own pace, exactly the way you want.
 
Check out WordTips: The Macros today!