Barth Wilsey said:
Please provide me with the code to add a new row to a table
If the cursor is in the table you want to add to, use
Selection.Tables(1).Rows.Add
If the cursor is elsewhere, but you know the index of the table (that
is, whether this is the first table in the document, the second,
etc.), you can do something like
ActiveDocument.Tables(2).Rows.Add