Welcome toWord.Tips.Net
Ask a Word Question
Make a Comment
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
Standardizing Note Reference Placement
Selecting Printing of Color Pictures
Moving Rows and Columns With the Mouse
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:
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.
Sub EditGoTo()
'
' EditGoTo Macro
' Jumps to a specified place in the active document
'
With Dialogs(wdDialogEditGoTo)
.Destination = ""
.Show
End With
End Sub
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.