S
Scott
I have a Select Case in my code where I check if certain text matches the
case, now I want to know if the case *includes* the text mentioned in there,
even if it includes other text also, and that's different than a regular
Select case where I would write:
Select Case TextContant
Case "This one exactly"
Do This
Case "This one exactly 3"
Do something other
End Select
But in my case I want to have 1 case if the text contains "This one exactly"
even if it has more text before or after that, how do I do that. ?
Thanks,
Scott
case, now I want to know if the case *includes* the text mentioned in there,
even if it includes other text also, and that's different than a regular
Select case where I would write:
Select Case TextContant
Case "This one exactly"
Do This
Case "This one exactly 3"
Do something other
End Select
But in my case I want to have 1 case if the text contains "This one exactly"
even if it has more text before or after that, how do I do that. ?
Thanks,
Scott