Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
430 views
in Technique[技术] by (71.8m points)

formula - change date format excel

I have the following date in excel "5/2/2020", I would like to obtain "5/Feb/2020", but unfortunately I am getting "May/2/2020".

Also tried to change the format of the cells , but excel still interprets that the first number is the month.

How do I tell Excel that the month is in the second position ?

question from:https://stackoverflow.com/questions/66064830/change-date-format-excel

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try: If 5/2/2020 is in cell E5 then:

=VALUE(TEXT(E5,"d/mm/yyyy"))

and then custom number format this cell to d/mmm/yyyy

will yield 5/Feb/2020


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...