reversing dates from yyyymmdd to mmddyyyy

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

we exported to an excell spread sheet and the dates are reversed. we wanted
mmddyyyy and they come into spread sheet yyyymmdd
 
Create a query based on the table(s) which you want to export to Excel. On
the date field use the Format function to show the data like you want
exported. Export the query.

FormattedDate: Format([YourDateField], "mmddyyyy")
 
Back
Top