I have created a user interface that display search results on a form in the datasheet view. I am trying to output this form to an excel workbook with multiple worksheets using
DoCmd.OutputTo acOutputForm, "frmBCTable", acFormatXLS, "S:\MikeW_DB\TransferXL.xls"
The form outputs fine but replaces all worksheets in the workbook with a single sheet with the output data. Is there a way to output to a workbook and still preserve all other worksheets. I am using Office 2003.
Thanks for any help.
DoCmd.OutputTo acOutputForm, "frmBCTable", acFormatXLS, "S:\MikeW_DB\TransferXL.xls"
The form outputs fine but replaces all worksheets in the workbook with a single sheet with the output data. Is there a way to output to a workbook and still preserve all other worksheets. I am using Office 2003.
Thanks for any help.