You can create a "catch-all" case which will execute if none of the other conditions apply. The trick is to place a "Case Else" as the last case like this:
Select Case variable
Case 1
' Do when variable = 1
Case 2
' Do when variable = 2
Case 3
' Do when variable = 3
Case Else
' Do when the variable equals any other value
End Select
Please note: This form is only for submitting questions about the sample for us to consider including in the FAQ. If we feel the question merits inclusion, we will include it along with a reply. We will not respond to your email individually.