I have this simple little piece of vba code that I would expect to return "Got to condition two" but instead it falls all the way to "three". Why?
Dim testValue as String
testValue = Null
If testValue = 8888 Then
Debug.Print "Got to condition one"
ElseIf testValue = Null Then
Debug.Print "Got to condition two"
Else
Debug.Print "Got to condition three"
End If