Cell.Previous property (Word)

Returns a Cell object that represents the previous table cell in the Cells collection. Read-only.

Syntax

expression.Previous

expression A variable that represents a Cell object.

Example

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

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

Support and feedback

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.