使用VBA代碼請求更正和了解以下關於csv導出的查詢。使用VBA代碼請求關於csv文件導出的幫助
Private Sub VAT_OFFSET_Click()
strDestPtah = IIf(Right(txtDestpath.Value, 1) = "\", txtDestpath.Value, txtDestpath.Value & "\") 'Automatically add "\" at the end, if not exist
DoCmd.TransferText TransferType:=acExportDelim, , TableName:="VAT_OFFSET", Filename:=strDestPtah & "GRT_OUTPUT.csv", HasFieldNames:=True
End Sub
過網,我發現下面的查詢
DoCmd.TransferText acExportDelim, , "tmpExport", "C:\export.csv"
所以按我的理解,「tmpexport
」是從那裏數據將被導出爲CSV和而非C:\export.csv
我有表名輸入用於手動輸入窗體路徑的變量(strDestPtah
)。
您是否收到錯誤? – weloytty 2014-11-06 13:18:24
是的,它的complie erro:語法錯誤 – 2014-11-06 13:21:29