Cell.Next Property

Word Developer Reference

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

Syntax

expression.Next

expression   A variable that represents a Cell object.

Example

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

Visual Basic for Applications
  If Selection.Information(wdWithInTable) = True Then
    Selection.Cells(1).Next.Select
End If

See Also