I assume you are in a time zone that uses that format. I tried this in Australia and it didn't work, but when I changed the order to the same as our format, it did, so I assume in this order it will work there. Let me know.
=CONCATENATE((MID(G23,3,2)*1),"/",(RIGHT(G23,2)*1),"/",(LEFT(G23,2)*1))
HTH
Richard
Sorry, you need to multiply the whole thing by 1. COuld also use
=(MID(G23,3,2)&"/"&RIGHT(G23,2)&"/"&LEFT(G23,2))*1
Both assume your date 990228 are in cell G23
Richard
Thanks for your help, unfortunately it did not work because when I have
000123 that should display Jan 23, 2000 instead I get "Jan 12, 2012" you will provably get the same result.
I have try many different ways. For some reason it is not recognizing the Zeros to the left of the number.
Finally got it. It's a long formula but it works.
=DATE(LEFT(RIGHT(CONCATENATE("'0000",D78),6),2), MID(RIGHT(CONCATENATE("'0000",D78),6),3,2),RIGHT(RIGHT(CONCATENATE("'0000",D75),6),2))
Thanks. Thanks for your help, unfortunately it did not work because when I have 000123 that should display Jan 23, 2000 instead I get "Jan 12, 2012" you will provably get the same result. I have try many different ways. For some reason it is not recognizing the Zeros to the left of the number.
: Sorry, you need to multiply the whole thing by 1. COuld also use : =(MID(G23,3,2)&"/"&RIGHT(G23,2)&"/"&LEFT(G23,2))*1 : Both assume your date 990228 are in cell G23 : Richard