How can I automatically select the text of a Section in Word?

D

Daiya Mitchell

How can I automatically select the text of a Section in Word?

Hit F8 multiple times (5, I think), until it goes beyond a paragraph.
F8 2x-selects word
3x-selects sentence
4x-selects paragraph
5x-selects section (text and following section break selected)

DM

PS. Just discovered that Word can't recognize the difference between St.
Lucia in a sentence and an actual sentence. Hmmm. Any way to get around
that?
 
G

Graham Mayor

Matt said:
How can I automatically select the text of a Section in Word?

The following macro will select the section that the cursor is in

Sub SelectSection()
ActiveDocument.Bookmarks("\section").Range.Select
End Sub

See http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Top