Selection.InsertRowsAbove method (Word)
Inserts rows above the current selection.
expression. InsertRowsAbove
expression Required. A variable that represents a Selection object.
Microsoft Word inserts as many rows as there are in the current selection.
To use this method, the current selection must be in a table.
This example selects the second row in the first table and inserts a new row above it.
ActiveDocument.Tables(1).Rows(2).Select
Selection.InsertRowsAbove
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.