tiredofit
Well-known Member
- Joined
- Apr 11, 2013
- Messages
- 1,913
- Office Version
- 365
- 2019
- Platform
- Windows
What is the difference between this:
and this:
I seem to remember there IS a difference, if you were testing for a value or something along those lines.
Thanks
Code:
Select Case MyCondition
Case vbNullstring
Case Else
End Select
and this:
Code:
Select Case MyCondition
Case Is = vbNullstring
Case Else
End Select
I seem to remember there IS a difference, if you were testing for a value or something along those lines.
Thanks
Last edited: