Is there any function or operator like:
If RoleName in ( "Val1", "Val2" ,"Val2" ) Then
'Go
End If
Instead of:
If RoleName = "Val1" Or RoleName = "Val2" Or RoleName = "Val2" Then
'Go
End If
|
|
|
Try using an array and then you can use the Contains extension:
Or without the declaration line:
From the OP, if the Contains extension is not available, you can try this:
|
|||||||||||||||
|
|
You can use Contains as shown by LarsTech, but it's also very easy to add an
You can use it like this:
|
|||
|
|
|
You could also use a
|
|||
|