Jason,
The formula
=DATEVALUE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(B3,".",""),"Date
",""),"Month",""),"Year",""))
formatted for date, will return the date value found in the string
Date 31.Month December.Year 2007
(If that is truly how it is presented.)
Then you can use that value in a formula like this - let's assume that the
formula is in cell F3:
=DATE(YEAR(F3),MONTH(F3) + IF(DAY(F3)>D4,1,0),D4)
Not sure what you want to do after that...
Bernie
> Hi Bernie,
> I mean to search the cell for the month, which in this case is December,
[quoted text clipped - 40 lines]
>> > Thanks in advance
>> > Jason