How can I convert Euro dates into U.S. Date; e.g. dd-mm to mm-dd?

R

Riley001

I need to convert dates that are in dd-mm format to mm-dd-yr format. How can
I do this? The dates originally appear like this: 24.06 which further
complicates the matter. I'm using EXCEL '97.
 
D

Dave Peterson

Maybe you could use a column of helper cells:

With 24.06 in A1, I put:
=DATE(2005,RIGHT(A1,2),LEFT(A1,2))
in B1 and dragged down

And formatted it the way I wanted.
 
R

Riley001

THANK YOU, THANK YOU, THANK YOU. Excellent. It worked !!!!!
YOU'RE a genius. Thank you so very much.
 
Top