I am trying to export data from a query to an excel file. The following codes work fine.
But, I would like to ask is it possible for the system to start writing data to cell A13 instead of A1?
Private Sub cmd_export2_Click()
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, "q_statistics_form", "C:\temp\testing\Data.xls", True
End Sub
Thanks for your help in advance.
But, I would like to ask is it possible for the system to start writing data to cell A13 instead of A1?
Private Sub cmd_export2_Click()
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, "q_statistics_form", "C:\temp\testing\Data.xls", True
End Sub
Thanks for your help in advance.