• ベストアンサー

Accessエクスポート時に連番を入れたい。

クエリ出力は以下でできたのですが、 ワークシート名がQ_testのみで上書きになります。 Excel出力時に、Q_testxx (x=月)にしたいです。 Function M_test() On Error GoTo M_test_Err DoCmd.TransferSpreadsheet acExport, 8, "Q_test", "c:\test.xls", False, "" M_test_Exit: Exit Function M_test_Err: MsgBox Error$ Resume M_test_Exit End Function

質問者が選んだベストアンサー

  • ベストアンサー
  • nicotinism
  • ベストアンサー率70% (1019/1452)
回答No.1

なぜ、Function モジュールにしているか?ですが。 Function M_test() On Error GoTo M_test_Err 'DoCmd.TransferSpreadsheet acExport, 8, "Q_test", "c:\test.xls", False, "" '↓ docmd.TransferSpreadsheet acExport,acSpreadsheetTypeExcel8 _ ,"Q_test","c:\test.xls",hasfieldnames:=false,range:="Q_test" & format(month(date()),"mm") M_test_Exit: Exit Function M_test_Err: MsgBox Error$ Resume M_test_Exit End Function では?

関連するQ&A

専門家に質問してみよう