I have an excel sheet created by a 3rd party program.
One of the columns has dates in this format: \"Jan 19, 2015 03:00:00 PM\"
I would like these dates to appea
Similar way as ron rosefield but a little bit simplified.
=DATE(RIGHT(A1,4),MATCH(MID(A1,4,2),{"01";"02";"03";"04";"05";"06";"07";"08";"09";"10";"11";"12"},0),LEFT(A1,2))