Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Is it possible to split a date string in the form 01Jan2011?

Hi,


I have downloaded a CSV file from my internet banking, and the date comes in the format 01Jan2011 which Numbers doesn't recognise as a date. I am wondering if it is possible to split these strings such that it would read 01 Jan 2011?


Thanks,


Nick

Macbook Pro, Mac OS X (10.7), 2.66 GHz Intel Core i7 8GB RAM

Posted on Aug 18, 2011 3:11 AM

Reply
Question marked as Best reply

Posted on Aug 18, 2011 4:08 AM

you can use the functions:

- LEN() to get the total length of the string

- LEFT() to get the left n characters of a string

- MID() to get the n cdharacters starting at posiiton m

- RIGHT() to the get the n right characters


Assuming that there are always two characters for the day, three for the month and four for the year:


you can use:

New Date = =LEFT(A2, 2)&" "&MID(A2, 3, 3)&" "&RIGHT(A2,4)


User uploaded file

4 replies
Question marked as Best reply

Aug 18, 2011 4:08 AM in response to nick_harambee

you can use the functions:

- LEN() to get the total length of the string

- LEFT() to get the left n characters of a string

- MID() to get the n cdharacters starting at posiiton m

- RIGHT() to the get the n right characters


Assuming that there are always two characters for the day, three for the month and four for the year:


you can use:

New Date = =LEFT(A2, 2)&" "&MID(A2, 3, 3)&" "&RIGHT(A2,4)


User uploaded file

Is it possible to split a date string in the form 01Jan2011?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.