Hello all.
Having issues exporting a query to a delim text file.
DoCmd.TransferText acExportDelim, "", "qry_VISA Statement Final Index", "R:\DEPT-BR\CONSUMER LENDING\VISA\VISA Statements\VISA Final Index.txt", False
The file itself exports just fine. However, in the query I have a prompt for a date and when I use 02/01/2012 the result in the text file is:
30 00 32 00 2F 00 30 00 31 00 2F 00 32 00 30 00 31 00 33 00
In addition, anything that is not formatted as a number has quotes.
Two questions:
Having issues exporting a query to a delim text file.
DoCmd.TransferText acExportDelim, "", "qry_VISA Statement Final Index", "R:\DEPT-BR\CONSUMER LENDING\VISA\VISA Statements\VISA Final Index.txt", False
The file itself exports just fine. However, in the query I have a prompt for a date and when I use 02/01/2012 the result in the text file is:
30 00 32 00 2F 00 30 00 31 00 2F 00 32 00 30 00 31 00 33 00
In addition, anything that is not formatted as a number has quotes.
Two questions:
- How do I get my date to actually export?
- How do I get rid of the quotes?