Excel string to date format

I J

I tried to convert string date value with format cell option but I failed. Tried search over and over again on web but didnt get better solution.

I want to convert following

23rd July 2015

to date format like

23/07/2015

Alex Frolov

Please use the following formula to convert text to date:

=DATE(RIGHT(A1,4),MONTH(MID(A1,FIND(" ",A1)+1,LEN(A1)-FIND(" ",A1)-5)&"1"),LEFT(A1,FIND(" ",A1)-3))

where A1 is your original string.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related