G
Guest
Does anyone know why this doesn't work:
Select Case X
Case X or Y
msgbox("hello world!")
End Select
It seems X or Y doesn't evaluate correctly (I think only the first 1/2 is
evaluating).
Instead, I believe the proper syntax is Case X, Y?
Can anyone clarify why X or Y will compile but doesn't evaluate right?
Select Case X
Case X or Y
msgbox("hello world!")
End Select
It seems X or Y doesn't evaluate correctly (I think only the first 1/2 is
evaluating).
Instead, I believe the proper syntax is Case X, Y?
Can anyone clarify why X or Y will compile but doesn't evaluate right?