Cassio
Junior Contributor
Is there a way I can use the Like operator in a select case stetement? I want it to have the same effect of statement below:
But there are many conditions to test and the select case would look better.
Thanks.
Visual Basic:
If m Like "200*" then
'code
Elseif m Like "test*" then
'code
end if
But there are many conditions to test and the select case would look better.
Thanks.