that will just use the numbers already in the cell rather than translating the numbers to a date that the number would represent in excel code? When I use this formula I get 8/1/32 0:00 rather than 1/19/02 2:30
There is no shorter way. You can change the LEFT with length calculation to improve:
=LEFT(B2,len(B2)-4)&"/"&MID(B2,2,2)&"/"&MID(B2,4,2)&" "&LEFT(A2,len(A2)-2)&":"&MID(A2,2,2)
The above is not true date-time calculation, just string manipulation.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.