Row.Range property (Word)
Returns a Range object that represents the portion of a document that is contained within the specified table row.
expression.Range
expression Required. A variable that represents a 'Row' object.
This example copies the first row in table one.
If ActiveDocument.Tables.Count >= 1 Then _
ActiveDocument.Tables(1).Rows(1).Range.Copy
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.