N
NancyM
I am using MS Access 2007. I have query I wish to export in csv format. I
placed the following code on the form to execute by pressing a button:
strDoc = "Sales"
strExportFile = "C:\ Documents and Settings\UserName\My
Documents\FolderName\Sales.csv
Docmd.TransferText acExportDelim, , strDoc, strExportFile, False
The resulting csv file only encloses text field in double quotes.
How do I get my number fields enclosed in double quotes? I want to use vba
code in a form so all I have to do is press a button.
Thank you for any help.
placed the following code on the form to execute by pressing a button:
strDoc = "Sales"
strExportFile = "C:\ Documents and Settings\UserName\My
Documents\FolderName\Sales.csv
Docmd.TransferText acExportDelim, , strDoc, strExportFile, False
The resulting csv file only encloses text field in double quotes.
How do I get my number fields enclosed in double quotes? I want to use vba
code in a form so all I have to do is press a button.
Thank you for any help.