> I'm trying to parse the following text to pull out the course info, which is
> to the right of "below:" within the text. We can say the text value is
[quoted text clipped - 7 lines]
> Much thanks,
> Clint
So if I understand you correctly, from the sentence below, you wish to
return
"PLN0010: Sales Orders"
SomeVariable = Trim(Mid(SomeText,InStr(SomeText,"below:")+7))

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
cherman - 15 Nov 2006 18:43 GMT
Perfect! Thanks.
> > I'm trying to parse the following text to pull out the course info, which is
> > to the right of "below:" within the text. We can say the text value is
[quoted text clipped - 13 lines]
>
> SomeVariable = Trim(Mid(SomeText,InStr(SomeText,"below:")+7))