Next Method Example

This example moves the insertion point just before the next comment reference marker in the active document.

With Application.Browser
    .Target = wdBrowseComment
    .Next
End With

This example inserts a number and a tab before the first nine paragraphs in the active document.

For n = 0 To 8
    Set myRange = ActiveDocument.Paragraphs(1).Next(Count:=n).Range
    myRange.Collapse Direction:=wdCollapseStart
    myRange.InsertAfter n + 1 & vbTab
Next n

This example selects the paragraph following the current selection.

Selection.Next(Unit:=wdParagraph, Count:=1).Select