Hi Newbie
Use something like this:
Sub CreateTable()
Dim wdTable As Word.Table
Dim wdRange As Word.Range
Set wdRange = ActiveDocument.Range
wdRange.Collapse wdCollapseEnd
Set wdTable = ActiveDocument.Tables.Add(Range:=wdRange, NumRows:=2,
NuMColumns:=3)
wdTable.Rows.Add
End Sub
You'll find that the macro recorder often gives you a good idea of the
objects and methods involved in doing something like this. For more
information, see
Creating a macro with no programming experience using the recorder
http://www.word.mvps.org/FAQs/MacrosVBA/UsingRecorder.htm
and
How to modify a recorded macro
http://word.mvps.org/FAQs/MacrosVBA/ModifyRecordedMacro.htm
Hope this helps.
Shauna Kelly. Microsoft MVP.
http://www.shaunakelly.com/word