Convert mmddccyy to ccyymmdd?

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

Guest

How does one convert the date 12131946 to 19461213 without losing any
information?
 
PaulaV said:
How does one convert the date 12131946 to 19461213 without losing any
information?

If it's a character string...

=Right([StringOrField], 4) & Left([StringOrField],4)
 
I'd definitely use & rather than + to concatenate the values, just to make
sure it does concatenate and not add the numeric values.
 

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

Back
Top