vAn If statement that
uses Else If passes through all of the previous cases before reaching a
given test … think about the consequences
;If someVar < 20 Then
; MsgBox(“Less than 20”)
;ElseIf
someVar < 10 Then
; MsgBox(“Less than 10”)
;Else
; ...
;EndIf