Selection.InsertRows (Word)

Inserts the specified number of new rows above the row that contains the selection. If the selection isn't in a table, an error occurs.

You can also insert rows by using the Add method of the Rows object.

InsertRows (NumRows)

NumRows: The number of rows to be added.


If Selection.Information(wdWithInTable) = True Then 
 Selection.InsertRows NumRows:=2 
 Selection.Borders.Enable =False 
End If