TransferText .CSV format

Leo_Polla_Psemata

Registered User.
Local time
Today, 06:28
Joined
Mar 24, 2014
Messages
364
Hi ,
I have a simple query and I want to export it in excel, Coma Separated Value., .CSV

I tried to run DoCmd.TransferText but all of my attempts were futile.

Is there any idea about it ?

Thanks



Edit

I found it, I must export it as TXT and file suffix insert .csv instead of .txt and it works

Now, does anyone know if I can execute this "Saved Exports" through a macro or docmd ?



Another edit, i insert a picture just to make it more clear.
Can I run this "Saved Exports" through a macro or docmd ?

[img=http://s16.postimg.org/fhfuqxm5d/Untitled.jpg]
 
Last edited:
that isn't right.

you can export either as fixed width, or as comma separated. you can give the resulting file any name you like.

the various arguments in the docmd.transfertext command specify how the resultant file is structured. you can use a specification file instead if you prefer.

In your code (eg as a result of a button click)
docmd.transfertext etc
 
The problem is that the "specification file" does not include field name on first row.
 
The check box, yes, but it doesn't keep the field name in the specifications and the csv is without field name on first row

Northwinsd.jpg
 

Users who are viewing this thread

Back
Top Bottom