Row.Next property (Word)
Returns a Row object that represents the table row that is next in the collection of rows in a table. Read-only.
expression.Next
expression A variable that represents a Row object.
If the selection is in a table, this example selects the contents of the next table row.
If Selection.Information(wdWithInTable) = True Then
Selection.Row(1).Next.Select
End If
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.