Q: date convert

J

JIM.H.

Hello,
How can I convert the date with the format YYYYMMDD to MM/DD/YYYY with a
formula?
Thanks,
 
A

Arvi Laanemets

Hi

With date in A1
=DATE(LEFT(A1,4),MID(A1,5,2),RIGHT(A1,2))
and format in any valid date format
 
G

Gary76

Assuming the date is numeric, something like:

=DATE(LEFT(A1,4),MID(A1,5,2),RIGHT(A1,2))

HTH
 
Top