excel date formatting not working

后端 未结 12 3186
-上瘾入骨i
-上瘾入骨i 2021-02-20 15:13

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

12条回答
  •  孤城傲影
    2021-02-20 15:30

    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))

提交回复
热议问题