Section.Range Property (Word)
Returns a Range object that represents the portion of a document that's contained in the specified object.
Syntax
expression .Range
expression Required. A variable that represents a Section object.
Example
This example inserts text at the end of section one.
Set myRange = ActiveDocument.Sections(1).Range
With myRange
.MoveEnd Unit:=wdCharacter, Count:=-1
.Collapse Direction:=wdCollapseEnd
.InsertParagraphAfter
.InsertAfter "End of section"
End With