V
Vanessa
I am exporting a query from MS Access 97 to a .csv file.
DoCmd.TransferText acExportDelim, , "AllData",
strPathFileTemp, False
The problem is the .csv file it creates contains quotes (")
around the data results.
"C",,,,,,,,,,
"C","SENDER","RECIPIENT","REPORT ID","SEQ NO"
How do you produce a .csv file without the quotes?
DoCmd.TransferText acExportDelim, , "AllData",
strPathFileTemp, False
The problem is the .csv file it creates contains quotes (")
around the data results.
"C",,,,,,,,,,
"C","SENDER","RECIPIENT","REPORT ID","SEQ NO"
How do you produce a .csv file without the quotes?