|
Are you in the US? If your default date format is m/d/yy then, assuming your timestamp in A1 you can extract the date with this formula in B1
=MID(REPLACE(A1,LEN(A1)-13,9,","),2,99)+0
Format B1 as a date
If you want to include the time, too try
=MID(REPLACE(A1,LEN(A1)-13,0,", "&RIGHT(A1,4)),2,LEN(A1))+0
and format as date and time
|