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: Stepping through Sentences.

Selecting Sentences

Written by Allen Wyatt (last updated May 10, 2022)
This tip applies to Word 97, 2000, 2002, and 2003


1

Word does not provide function keys for you to step through your document one sentence at a time. If you are used to a different word processor, you may consider such a capability rather important. The following macro, StepRightSentence, provides the capability to step through a document one sentence at a time toward the right. You can assign the macro either to a shortcut key or to a toolbar button.

Sub StepRightSentence()
    If Selection.Type <> wdNoSelection Then
        Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdMove
    End If
    Selection.Sentences(1).Next(Unit:=wdSentence, Count:=1).Select
End Sub

If you want to use Word to step through a document toward the left (beginning of the document), you can use the following macro, StepLeftSentence:

Sub StepLeftSentence()
    If Selection.Type <> wdNoSelection Then
        Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdMove
    End If
    Selection.Sentences(1).Previous(Unit:=wdSentence, Count:=1).Select
End Sub

Regardless of which of these macros you use, the result is that you step through your document, one sentence at a time. After running the macro, the next sentence—left or right—is selected. If you instead want to only jump to the beginning of the sentence, without selecting it, add the following line as the final line in the macro, just before the End Sub statement:

    Selection.Collapse Direction:=wdCollapseStart

If you prefer to not use macros, you can also move through sentences by customizing Word to take advantage of some "hidden" commands. Follow these steps:

  1. Choose the Customize option from the Tools menu. Word displays the Customize dialog box. (See Figure 1.)
  2. Figure 1. The Customize dialog box.

  3. Click on the Keyboard button. Word displays the Customize Keyboard dialog box. (See Figure 2.)
  4. Figure 2. The Customize Keyboard dialog box.

  5. In the Categories list, choose All Commands.
  6. In the Commands list, choose SentLeft.
  7. Click in the Press New Shortcut Key box.
  8. Press Alt+Left Arrow.
  9. Click on Assign.
  10. Click on Close to dismiss the Customize Keyboard dialog box.
  11. Click on Close to close the Customize dialog box.

After performing this series of steps, you can step backwards through your document, one sentence at a time, simply by pressing Alt+Left Arrow. You can also repeat the steps and assign the following

Action Commands List Shortcut Key
Step right by sentences SentRight Alt+Right Arrow
Step left and select SentLeftExtend Shift+Alt+Left Arrow
Step right and select SentRightExtend Shift+Alt+Right Arrow

Most Word users will find these keyboard commands a welcome addition to the normal editing keys. You should know, however, that some of these suggested shortcut keys are already in use by Word. For instance, the Shift+Alt+Left Arrow combination is used to promote a heading level in an outline. However, if you can live without that use of the keys, then go for it. (Personally, I think this reassigned use makes much more sense.) If you would rather use a different key combination, you can do so by using any one you would like in step 6 above.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (979) 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: Stepping through Sentences.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Fonts Missing in Word

What are you to do if you find that you have no fonts available in Word, but they are available in other programs? There ...

Discover More

Determining a State from an Area Code

Want to be able to take information that is in one cell and match it to data that is contained in a table within a ...

Discover More

Automatically Changing a Cell's Background Color

It is often desired to change what is displayed in a cell based on what is in a different cell. What if what you want to ...

Discover More

Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!

More WordTips (menu)

Selecting a Text Block

Word has an interesting way of allowing you to select a rectangular block of text, without reference to what may be ...

Discover More

Selecting an Entire Section

Documents can be subdivided into sections, with each of them formatted differently. If you want to select all the text in ...

Discover More

Replacing Text Selections

When editing a document, Word normally replaces whatever text you select with whatever you start to type. Here's how to ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 2 + 8?

2017-04-09 12:59:50

Craig

While implementing this tip I found Shift-Alt-Left Arrow is normally assigned to Outline Promote and Right Arrow assigned to Outline Demote. I would prefer to keep those shortcuts, know that I know about them. Unassigned alternates available to use for selecting the previous / next sentence are Shift-Ctrl-Left Arrow and Shift-Ctrl-Right Arrow.


This Site

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.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.