Why does 12/3/04 in an Access table become 03-Dec-04 when exporte.

G

Guest

When exporting a table created in Access with a date formatted as 12/3/2004
to Excel, the date appears as 03-Dec-04 in the Excel spreadsheet. How can I
make the format of the date transfer?
 
D

Douglas J. Steele

In many cases, Microsoft products assume mm/dd/yyyy format, ignoring
whatever format you've chosen in Regional Settings.

You say you're exporting the table: to what format are you exporting? How
are you getting it into Excel? If you're using a text file, for instance, I
believe that the Text Wizard in Excel allows you to specify the date format.
 
N

notDave

Our solution was to create a query of the table being
exported that includes a column such as this;

OurDate: Format([DateColumn],"mm/dd/yy")

It necessitates creating a query where a table aught to be
enough, but it was simple and it works for us.

~notDave
 

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