Column.Next property (Word)

Returns the next column in a collection of table columns. Read-only.

Syntax

expression.Next

expression A variable that represents a Column object.

Example

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

If Selection.Information(wdWithInTable) = True Then 
 Selection.Columns(1).Next.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.