how to change number to date

F

Fred Smith

Probably the best is:

=date(mod(a1,10000),mod(int(a1/10000),2),day(int(a1/1000000)))

This will handle the case where you have two digit dates.

Regards
Fred
 
D

Dave Peterson

This worked for me with my USA date settings (mdy):
=--TEXT(A1,"00\/00\/0000")
and formatted as a date
 
H

Happy One

Yes, it works.

Thank you,

Dave Peterson said:
This worked for me with my USA date settings (mdy):
=--TEXT(A1,"00\/00\/0000")
and formatted as a date
 
Top