Hi Harry
I used the following in an earlier project .. it may help some
TgtRepWdDoc.Tables(1).Rows(4).Select
objWord.Selection.InsertRowsAbove 2
This code snippet inserts two rows above row 4 in an existing table, Table 1 in the document object TgtRepWdDoc.
Note that "objWord" is the object instance of Word running within Excel VBA.
You need to specify this to qualify the keyword "Selection" otherwise Excel complains.
There is also an "InsertRowsBelow" method.
And to add text (e.g. to row 4 and col 3; and then two cells to the right) ..
TgtRepWdDoc.Tables(1).Cell(Row:=4, Column:=3).Range.Select
objWord.Selection.TypeText Text:="Text"
objWord.Selection.MoveRight unit:=wdCell, Count:=2
objWord.Selection.TypeText Text:="Text Two"
Hope this gets you going
Barry
Bookmarks