Written by Allen Wyatt (last updated May 20, 2023)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365
An easy way to select a sentence in Word is to hold down the Ctrl key as you click on a word. This selects the entire sentence in which the word is contained. What if you want to step through your document, once sentence at a time, though? Word doesn't provide a built-in way to do that, unlike some other word processors.
You can create this capability yourself through the use of macros. 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:

Figure 1. The customize ribbon area of the Word Options dialog box.

Figure 2. The Customize Keyboard 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 7 above.
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 (10275) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365.
Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2021 or Microsoft 365. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word Step by Step today!
One of the most overlooked shortcut keys in Word has to be the extend key. Yet, learning how to use this simple key can ...
Discover MoreIf you are using Word in Draft view, and the text on the screen doesn't wrap at the right margin like it should, the ...
Discover MoreWhen creating a document, if can be frustrating to have a blank page somehow appear at the end of the document. If you ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2026-04-06 11:59:57
Barry
I am usingWord (Office) 2021 Windows 11.
This tip works sort of ok for me but...
with IP at the start of the document it selects the second sentence and then only every other sentence.
If I comment out the complete IF statement it still starts by selecting the second sentence but then selects every sentence in turn.
At the last sentence I get a 'Run time error 91:' message!
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu 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 © 2026 Sharon Parq Associates, Inc.
Comments