Can you help me with the below case statement? TextString is the variable, and I am looking for the letters OPT. If they exist, cI want to continue, if they don't i want to stop.
Select Case TextString
Case "OPT" 'if it doesn't contain OPT, quit
GoTo Continue
Case Else ' Other values.
GoTo Quits
End Select
Thankyou
Select Case TextString
Case "OPT" 'if it doesn't contain OPT, quit
GoTo Continue
Case Else ' Other values.
GoTo Quits
End Select
Thankyou