text to date conversion

G

Gary''s Student

=DATE(LEFT(A1,4),MID(A1,5,2),MID(A1,7,2))+TIME(MID(A1,10,2),RIGHT(A1,2),0)
and format as Custom m/d/yyyy hh:mm
 
G

Gary''s Student

By using the + we are making a value. The integer part of the value is the
date and the decimal part of the value is the time.
 
Top