I created a feature request for this, but decided to post here also in case there is a workaround that I can use.
I need to modify an existing ListObject (Table) in an Excel file by adding new rows. I can't add a new row to the entire spreadsheet because it contains additional data (not only the ListObject) in the same rows as the where the Table is located.
Example... Columns A through Z have many rows of data and there is a Table in colunmns AB through AG. I need to add new rows ONLY to the table.
I tried to the following, but it doesn't seem to do anything.
IListObject myTable = mySheet.ListObjects[0];
myTable.Location.Resize(5, 6);
Thank you!
Greg