Sub SelectThisTable() Dim oTable As Table If Selection.Information(wdWithInTable) Then Set oTable = Selection.Tables(1) oTable.Range.Select Else MsgBox "Not in a table", vbCritical End If Exit Sub End Sub