Caution With ElseIf
An If statement that uses ElseIf passes through all of the previous cases before reaching a given test. Think about the consequences…
If someVar < 20 Then
Result = “Less than 20”
ElseIf someVar < 10 Then
Result = “Less than 10”
Else
...
End If
Will this statement ever be