Convert text to dates

K

Ket

Hello,

I am using Windows XP with Office XP. I have two columns. Column A
contains months of the year in the format January, March December etc.
Column B contains dates in the format 11th, 16th, 20th etc.
Is it possible to combine these two cells to produce a date? Can a
sort then be undertaken on this new date column so that all
information is sorted chronologically?
I tried using concatenate to combine the cells but couldn't get them
to be recognised as dates.
Thanks in advance for all your assistance.

Ket
London
 
N

NHarkawat

No direct formula but you can try his after a couple of steps
create in a separate area a table with 1st column January,feb...thru
december and against each ones type 1, 2 ..thru 12
use this formula in col C assuming col A has "January" and col B has "11th"
=DATE(2004,VLOOKUP(A1,$I$1:$J$12,2,0),LEFT(B1,SUMPRODUCT(--ISNUMBER(-LEFT(B1
,ROW(INDIRECT("1:2")))))))
Since year was not given I assumed 2004 and assumed cell I1 thru J12
contains the table I told you to create in 1st step
 
A

Arvi Laanemets

Hi

For row 2
=DATE(2004,MATCH(A2,{"January","February","March","April","May","June","July
","August","September","October","November","December"},0),SUBSTITUTE(SUBSTI
TUTE(SUBSTITUTE(SUBSTITUTE(B2,"st",""),"nd",""),"rd",""),"th",""))


Arvi Laanemets
 
R

Ron Rosenfeld

Hello,

I am using Windows XP with Office XP. I have two columns. Column A
contains months of the year in the format January, March December etc.
Column B contains dates in the format 11th, 16th, 20th etc.
Is it possible to combine these two cells to produce a date? Can a
sort then be undertaken on this new date column so that all
information is sorted chronologically?
I tried using concatenate to combine the cells but couldn't get them
to be recognised as dates.
Thanks in advance for all your assistance.

Ket
London


=--(A1&" "&LEFT(B1,LEN(B1)-2))

or

=--(LEFT(B1,LEN(B1)-2)&" "&A1)

Of course, since the year is unspecified, it will always default to the current
year.




--ron
 
K

Ket

Arvi,

Thanks, this worked very well. Can make use of your knowledge one more
time?
What happens if August, Setember,October, November,and December are
2004 and january, February are 2005. How should this formula be
adjusted?

Thanks again.
 
A

Arvi Laanemets

Hi

For interval from August 2004 to July 2005 (or to February 2005, it's the
same) the formula is:
=DATE(2004+(MATCH(A2,{"January","February","March","April","May","June","Jul
y","August","September","October","November","December"},0)<8),MATCH(A2,{"Ja
nuary","February","March","April","May","June","July","August","September","
October","November","December"},0),SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITU
TE(B2,"st",""),"nd",""),"rd",""),"th",""))

Arvi Laanemets
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top