I am using the TransferSpreadsheet function to export a table to an excel spreadsheet but this only seems to allow me to place data on an individual worksheet.
I am updating my table with a query and would like to append the worksheet after each table update with the updated table information so that each update of the table ins displayed on the one spreadsheet but this method only seems to replace the total contents of the sheet...
Is there a way around this or a more appropriate way to do this?
Here is my command:
I can dump the contents to seperate worksheets if I change the "All BOMs" to an non-unique value after each update but need to append the one worksheet..
thanks
I am updating my table with a query and would like to append the worksheet after each table update with the updated table information so that each update of the table ins displayed on the one spreadsheet but this method only seems to replace the total contents of the sheet...
Is there a way around this or a more appropriate way to do this?
Here is my command:
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, strTemp, "C:\" & strFileName & ".xls", True, "All BOMs"
I can dump the contents to seperate worksheets if I change the "All BOMs" to an non-unique value after each update but need to append the one worksheet..
thanks