I have different access tables and I need to save them to an excel spreadsheet but in different sheets. The way I know how to save a table to a spreadsheet is:
DoCmd.OutputTo acOutputTable, "tableName", acFormatXLS, "workbook.xls", False
I'm not sure though how to save to a specific Sheet. Could someone help me out?
Thank you!
DoCmd.OutputTo acOutputTable, "tableName", acFormatXLS, "workbook.xls", False
I'm not sure though how to save to a specific Sheet. Could someone help me out?
Thank you!