I cannot seem to remember the syntax for the following If statement:
If strCode in ("400A","401A","402A","403A","404A"
Then
--Do Something--
End If
What I want is that if strCode equals any of the values then do something.
Thanks in advance for the refresher.
If strCode in ("400A","401A","402A","403A","404A"
--Do Something--
End If
What I want is that if strCode equals any of the values then do something.
Thanks in advance for the refresher.