I'm trying to not look for value 2, however "shouldn't happen" gets shown rather then the else, "ok".
If Not InStr("1, 2, 3", "2") Then
MsgBox ("shouldn't happen")
Else
MsgBox ("ok")
End If
We know the value is within the string. yet for some reason the "not" is not working. Does anyone know why?