Select all but the first two cells in a table column

Article contributed by Bill Coan

After selecting the column, set the start of the selection range to the start of the third cell in the selection. Wrap the code inside an If statement to make sure the selection is within a table. (That way, if not in a table, nothing will happen).

If Selection.Information(wdWithInTable) Then
    Selection.Columns(1).Select
    Selection.SetRange _
            Start:=Selection.Cells(3).Range.Start, _
            End:=Selection.End
End If