i have imported data in a date format yymm (0806 = Jun 08). how can I make excel recognize that?
S stabfpo Jun 7, 2008 #1 i have imported data in a date format yymm (0806 = Jun 08). how can I make excel recognize that?
G Gary''s Student Jun 7, 2008 #2 Assuming four digits with the leading zero visible and data in column A, in B1 enter: =DATE(2000+LEFT(A1,2),--RIGHT(A1,2),1) and copy down This formula will need adjustment if any dates are prior to 1/1/2000
Assuming four digits with the leading zero visible and data in column A, in B1 enter: =DATE(2000+LEFT(A1,2),--RIGHT(A1,2),1) and copy down This formula will need adjustment if any dates are prior to 1/1/2000
D Dave Peterson Jun 7, 2008 #3 Another one: =--(TEXT(A1,"\2\000\-00")&"-01") Format the cell as a date.
W ward376 Jun 7, 2008 #4 Dates and times in xl are just formatted numbers. =VALUE(RIGHT(A2,2)&"/"&LEFT(A2,2)) format as date. Cliff Edwards
Dates and times in xl are just formatted numbers. =VALUE(RIGHT(A2,2)&"/"&LEFT(A2,2)) format as date. Cliff Edwards