bottom
Great WordTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > WordTips Home > General > Moving Found Text Down On a Page

Moving Found Text Down On a Page

Summary: When you use the Search feature to find information, if the information is not on the visible page, then Word displays the page with the information and the occurrence of what you are searching for is highlighted on the top row of the window. It is often helpful for it to be on the second or third row, so you can see the context of what was located. This tip explains how you can “move” the page a bit so you can see what was found within its context. (This tip works with Microsoft Word 97, Word 2000, Word 2002, and Word 2003.)

Subscriber David Goldenberg wrote about his frustration with using Word's Find feature and having the "found" information appear on the top line of the document window. (Technically, this is true only if the next occurrence of the thing you are searching for is not visible within the current window.) When Word changes the display to show what it found, then the item found is shown on the top row. In earlier versions of Word, the item found was always on the second row of the document window.

Unfortunately, there is no setting or anything that you can use to change where Word displays found text after changing the display window. There is, however, a macro you can devise that will provide a workaround. Consider the following:

Sub MyFindNext()
    Application.ScreenUpdating = False
    Selection.Find.Execute
    ActiveDocument.Bookmarks.Add Range:=Selection.Range, Name:="MyFound"
    Selection.MoveUp Unit:=wdLine, Count:=3
    Selection.GoTo What:=wdGoToBookmark, Name:="MyFound"
    ActiveDocument.Bookmarks("MyFound").Delete
    Application.ScreenUpdating = True
End Sub

The purpose of this macro is to find the next occurrence of whatever you are searching for, bookmark the selection (uses a bookmark name of "MyFound"), move up three lines, jump back to the bookmark, and then delete the bookmark. The result is that whatever is "found" will be displayed at least three lines from the top of the screen.

To use the macro, simply assign it to a shortcut key combination that you can easily remember and use. Then, use Ctrl+F to search for your first occurrence as you normally would. Once the first occurrence is found, press Esc to dismiss the Find and Replace dialog box. Now you can use your shortcut key combination to initiate the macro and find the next occurrence of the search term. Keep pressing the shortcut key to keep pulling up additional instances.

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


Step Up and Take Control! Subscribers to WordTips know just how valuable a resource it is. WordTips Premium provides twice the number of exceptional, easy-to-understand tips every week in an ad-free newsletter, as well as substantial discounts on WordTips archives and e-books.
 
Check out WordTips Premium today!

Helpful Links

Ask a Word Question
Make a Comment

Tips.Net Home
Tips.Net Store

WordTips FAQ
WordTips Premium

Learn Access Now

Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

 

Great Info!

Get tips like this every week in WordTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)