Exporting Date using Query

K

Ken

I have a table which I export to a text file. Within that Table are date
fields. When I export the date field it appears as 11/10/2008 00:00:00.

All I required is the date. How can I achieve this?
 
J

John W. Vinson

I have a table which I export to a text file. Within that Table are date
fields. When I export the date field it appears as 11/10/2008 00:00:00.

All I required is the date. How can I achieve this?

Create a Query based on the table. In that query put a calculated field:

ExpDate: Format([datefield], "mm/dd/yyyy")

and include all the other fields you need exported.

Export this instead of the table.
 

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