For the following input box, why does the "case" statement not evaluate but the "If" does? I've declared strInputVal as a string.
strInputVal = InputBox("How many payments?")
This works:
If strInputVal = ""
Then GoTo Exit_sub
End If
Below does not work:
Select Case IsNumeric(strInputVal)
Case strInputVal = vbNullString
GoTo Exit_sub
End select