How do I convert the following text into dd/mm/yyyy format, in excel:-
24032006
2042005
19012008
2092001
The expected results should be:-
24/03/2006
02/04/2005
19/01/2008
02/09/2001
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
NEW ANSWER
Try this formula –
Assuming the text
"20122010"in date format is in cellA1OLD ANSWER
Assuming you will use some coding language to get this done, You can first check the length of string is 8. If its 7, then add 0 to front of string to make it 8. Then you can just insert ‘/’ after two characters and get the string in dd/MM/yyyy format.