Create a query into this table.
Type an expression such as this into the Field row in query design:
DateSerial(Right([d], 4), Mid([d], 3, 2), Left([d], 2))
That assumes the text date is in a field named "d".
If you are trying to write the date to a true Date/Time field, change the
query to an Update query (Update on Query menu), and place the expression in
the Update row under your real date field. Then run the query.
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
How can i convert this to a date?