Hi Bill,
I understand your need for privacy re what you can post and have no problems with that. Unfortunately, though, the code I most needed to see hasn't been included. Since you want the table inserted immediately after the title, try:
Code:
With wrdDoc
'All the other code before the insertion of an empty paragraph after the title
.Paragraphs.First.Range.InsertAfter vbCr
.Tables.Add Range:=.Paragraphs.First.Next.Range, NumRows:=4, NumColumns:=3
End With
The above code will replace the empty paragraph after the title with a 4-row*3-column table.