Export date to acsii file with no time

S

stathisb

Dear All,

I use MS Access 2000 and I would like to export from a
table data to a text file. Using delimited text when I
export some fileds that have date/time data, the date is
exported with the time in the text file. How can I get
only the date and not the time?
Thanks a lot in advance
 
K

Ken Snell [MVP]

Use a query as the source of the exported data, not the table. In the query,
replace the table's field with a calculated field that formats the output
the way you want it:

MyOutput: Format([FieldName], "mm/dd/yyyy")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top