Row.Previous Property (Word)

Returns a Row object that represents the table row that is previous to the specified row. Read-only.

Syntax

expression .Previous

expression A variable that represents a Row object.

Example

If the selection is in a table, this example selects the contents of the previous row.

If Selection.Information(wdWithInTable) = True Then 
 Selection.Rows(1).Previous.Select 
End If

See Also

Concepts

Row Object

Row Object Members