|
For UK settings try like this for the date
=REPLACE(REPLACE(A1,FIND(":",A1)-2,9,MID(A1,2,FIND(" ",A1,2)-1)),1,FIND(" ",A1,2),"")+0
and for date and time
=REPLACE(REPLACE(A1,FIND(":",A1)-2,9,MID(A1,2,FIND(" ",A1,2)-1)),1,FIND(" ",A1,2),"")+LEFT(RIGHT(A1,13),8)
If you want date in one cell annd time in another then use the first one for the date and
=LEFT(RIGHT(A1,13),8)+0
for the time
|