I have a table that I would like to append to an existing excel spreadsheet and I am using the
TransferSpreadsheet method with the following syntax:
DoCmd.TransferSpreadsheet acExport, 8, "Table-5", "C:\Stuff\MySpreadSheet.xlsx", True
This exports table-5 into C:\Stuff\MySpreadSheet.xlsx but places the data into a new tab named
"Table-5."
I would prefer to have this data appended to an existing tab in this spreadsheet
named "Work".
Can this be modified to export Table-5 into the "Work" tab of MySpreadsheet or do I need to
do this in another way?
Thank you
TransferSpreadsheet method with the following syntax:
DoCmd.TransferSpreadsheet acExport, 8, "Table-5", "C:\Stuff\MySpreadSheet.xlsx", True
This exports table-5 into C:\Stuff\MySpreadSheet.xlsx but places the data into a new tab named
"Table-5."
I would prefer to have this data appended to an existing tab in this spreadsheet
named "Work".
Can this be modified to export Table-5 into the "Work" tab of MySpreadsheet or do I need to
do this in another way?
Thank you