Range.Select Method (Word)
Selects the specified range.
Syntax
expression .Select
expression Required. A variable that represents a Range object.
Example
This example selects the first paragraph in the active document.
Sub SelectParagraph()
ActiveDocument.Paragraphs(1).Range.Select
Selection.Font.Bold = True
End Sub