As Martinique pointed out, the macro name to use is
TableInsertTable.
When I looked at the Word Command list, TableInsertTable
does not appear. What appears is InsertTableGeneral. But
when I select InsertTableGeneral, the Run button stays
greyed out.
If I assign a shortcut key to InsertTableGeneral it will
run and if I have a macro by the same name that will run
instead.
Curiously, TableInsertTable has a wdDialog constant for
use with the dialogs collection.
I initially looked at what was being run by the Insert
table menu without success. I compared its settings with
that of Format Paragraph (which also launches a dialog
box). I couldn't see any significant difference.
Curiously neither had a "onAction" setting. So I simply
set the onAction for the table menu using
Dim ctl As CommandBarButton
Set ctl = Application.CommandBars("Menu Bar").Controls
("T&able").Controls("&Insert").Controls("&Table...")
ctl.OnAction = "TableInsertGeneral"
Cheers
TonyS.