EthanHunt007
New member
- Local time
- Today, 09:16
- Joined
- Jan 26, 2008
- Messages
- 9
I have the following command as code for a button on a form to export a query to an csv file,
DoCmd.TransferText acExportDelim, , "Bacs", "C:\" & Format(Now(), "DD-MM-YY") & "_Bacs.csv", False
but if you open it with note pad it has "" around each field, how do i make it so they are not included?
also how do i make it export as "Bacs_10-02-08.csv", instead of "10-02-08_Bacs.csv"
Thanks
Ethan
DoCmd.TransferText acExportDelim, , "Bacs", "C:\" & Format(Now(), "DD-MM-YY") & "_Bacs.csv", False
but if you open it with note pad it has "" around each field, how do i make it so they are not included?
also how do i make it export as "Bacs_10-02-08.csv", instead of "10-02-08_Bacs.csv"
Thanks
Ethan