Hi,
I have a VBA function to transfer data from a query to a text file. The code is as follows:
Public Function ExportUsage()
DoCmd.TransferText acExportDelim, "Usage_Export_Spec", "usagequery2", "C:\Usage.txt", No
MsgBox "Export Completed!"
End Function
However, I need to extend this as...