I have a value like the following Mon Jun 18 00:00:00 IST 2012 and I want to convert this to 18/06/2012
Mon Jun 18 00:00:00 IST 2012
18/06/2012
How to convert this?
I tri
You can also use a formula in excel in order to convert this type of date to a date type excel can read: =DATEVALUE(CONCATENATE(MID(A1,8,3),MID(A1,4,4),RIGHT(A1,4)))
=DATEVALUE(CONCATENATE(MID(A1,8,3),MID(A1,4,4),RIGHT(A1,4)))
And you get: 12/7/2016 from: Wed Dec 07 00:00:00 UTC 2016
12/7/2016
Wed Dec 07 00:00:00 UTC 2016