Need to export table into csv file. Tried following:
DoCmd.TransferText acExportDelim, "", TABLENAME, "C:\abc.csv", False, ""
But the exported file contains data enclosed in double quotes i.e. if data in table is 123, it's coming in exported file as "123".
Is there any setting to avoid this?
|