Airfix9
Well-known Member
- Joined
- Sep 23, 2005
- Messages
- 886
Hi all,
Searched with no luck for an answer on this.... When I use "Select Case", how do I get my code to do nothing in certain circumstances?
Example (and the maximum value of i could be any integer, as defined elsewhere):
Any help gratefully received.
Searched with no luck for an answer on this.... When I use "Select Case", how do I get my code to do nothing in certain circumstances?
Example (and the maximum value of i could be any integer, as defined elsewhere):
Code:
Select Case i
Case 1
'do something
Case 2 - 5
'do something else
Case 6 - 8
'do nothing at all <-------
Case Else
'do something entirely different
End Select
Any help gratefully received.