I currently have multiple records which are formatted like so:
24th April 2014
However, I want it to be formatted like so:
24/04/2014 or 24/04/14 (either way is fine, does not really matter)
I am using excel 2013 by the way.
Thanks for any feedback.
Select the cells you wish to convert and run macro ReDate
I think a DATEVALUE Function should be good for this problem.
Let's assume the date text is stored in column A. And we know the main problem is about the existence of "st" or "nd" or "th" or "rd". If they are not existed, Excel could automatically recognize this datevalue. So I try to create a text of the date with those "th" using the text function:
and then use the DATEVALUE function to convert them into datevalue, and it's done I think.
Is it right? Hope this could help!
If you are able to remove the "th" from the date, Excel will be able to automatically format it. If you have a lot of data, a simple vba script will do the trick.