D
Dylan Moran
DoCmd.TransferText acExportDelim, , "myquery", strSaveFileName
The above code I am using to export a query. The output is as follows.
"(e-mail address removed); "
"(e-mail address removed); "
"(e-mail address removed); "
"(e-mail address removed); "
etc. Note the double quotation marks are included in the output. However I
would like the ouput to be
(e-mail address removed); (e-mail address removed); (e-mail address removed);
(e-mail address removed); etc
That is, with no quotations an in or long continuous line. I have dabbled
with using the acExportFixed in DoCmd.TransferText acExportFixed, ,
"myquery", strSaveFileName
but have troubles with "not having a specification name argument" or knowing
what the heck one even is!!.
Your help with a solution is much appreciated.
The above code I am using to export a query. The output is as follows.
"(e-mail address removed); "
"(e-mail address removed); "
"(e-mail address removed); "
"(e-mail address removed); "
etc. Note the double quotation marks are included in the output. However I
would like the ouput to be
(e-mail address removed); (e-mail address removed); (e-mail address removed);
(e-mail address removed); etc
That is, with no quotations an in or long continuous line. I have dabbled
with using the acExportFixed in DoCmd.TransferText acExportFixed, ,
"myquery", strSaveFileName
but have troubles with "not having a specification name argument" or knowing
what the heck one even is!!.
Your help with a solution is much appreciated.