ppete
Registered User.
- Local time
- Today, 10:33
- Joined
- Jan 15, 2002
- Messages
- 27
Hello Boffins,
Can you help?
I have a database which exports a query with the transfertext method:
DoCmd.TransferText acExportDelim, Xspec, "qry" & myarray(X), _
strFolderName & "\" & myarray(X) & ".csv"
and it comes out like this:
"1403","731210",-560.00
"1403","731880",-150.00
"1403","771100",45000.00
I have 2 problems:
1) I need to add a few lines to each of my exported csv files
2) I need to lose the qoutes (")
so it comes out like this:
bud_02hb,,
,,0202
1403,731210,-560
1403,731880,-150
1403,771100,45000
In the export specs i've set the text qualifier to none so I'm a bit puzzled as to why the quotes are still appearing.
Many thanks for you're help,
P
Can you help?
I have a database which exports a query with the transfertext method:
DoCmd.TransferText acExportDelim, Xspec, "qry" & myarray(X), _
strFolderName & "\" & myarray(X) & ".csv"
and it comes out like this:
"1403","731210",-560.00
"1403","731880",-150.00
"1403","771100",45000.00
I have 2 problems:
1) I need to add a few lines to each of my exported csv files
2) I need to lose the qoutes (")
so it comes out like this:
bud_02hb,,
,,0202
1403,731210,-560
1403,731880,-150
1403,771100,45000
In the export specs i've set the text qualifier to none so I'm a bit puzzled as to why the quotes are still appearing.
Many thanks for you're help,
P