Is there an easy way to extract the information since the lengths of the
month and date may vary? I got the year by
=--MID(L1,FIND(", ",L1)+2,4)
But I'm not sure how to obtain the other information. Please help.
Given your format, the date will always end at the third space.
=LEFT(A1,FIND(CHAR(1),SUBSTITUTE(A1," ",CHAR(1),3))-1)
returns the date in text form.
Since the date is an unambiguous textual representation, you could convert it
into an Excel date by preceding it with the double unary, and formatting it as
a date.
e.g.
=--LEFT(A1,FIND(CHAR(1),SUBSTITUTE(A1," ",CHAR(1),3))-1)
--ron