N
Newbie
Hi,
I have downloaded data from a database that stored dates as 1001201 for
1/12/2000 and 991201 for 1/12/1999.
I have used the following to convert this into a string that looks like a
date
=IF(LEFT(D2,1)="9",CONCATENATE(RIGHT(D2,2),"/",MID(D2,3,2),"/",LEFT(D2,2)),C
ONCATENATE(RIGHT(D2,2),"/",MID(D2,4,2),"/",MID(D2,2,2)))
However, what I would really like to do is make excel see the converted
string as a date rather than a piece of text that LOOKS like a date
What do I need to do to achieve this?
Thanks
I have downloaded data from a database that stored dates as 1001201 for
1/12/2000 and 991201 for 1/12/1999.
I have used the following to convert this into a string that looks like a
date
=IF(LEFT(D2,1)="9",CONCATENATE(RIGHT(D2,2),"/",MID(D2,3,2),"/",LEFT(D2,2)),C
ONCATENATE(RIGHT(D2,2),"/",MID(D2,4,2),"/",MID(D2,2,2)))
However, what I would really like to do is make excel see the converted
string as a date rather than a piece of text that LOOKS like a date
What do I need to do to achieve this?
Thanks