我正在使用DoCmd.TransferSpreadsheet acExport,acSpreadsheetTypeExcel12Xml将访问表InstallationGanttChartExport中的数据导出到现有的excel文件电子表格InstallationGanttChartExport中,我已经对其应用了excel表,然后使用动态表属性在另一个电子表格中使用了图表来执行图表。
但是,由于我已经将InstallationGanttChartExport电子表格数据格式化为表格,因此当我运行DoCmd.TransferSpreadsheet导出时,它会导出到新创建的电子表格InstallationGanttChartExport1。
如何确保其正确导出到InstallationGanttChartExport电子表格?
OutputFileName = DLookup("[DataPath]", "[DataPaths]", "[DataPaths].DataPathID = 1")
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel12Xml, "InstallationGanttChartExport", OutputFileName, True