That looks like it shouldn't work (If it's not true, and it's not false, then what is it??), but it does anyway....weird..

This also seems to work:
VB Code:
  1. Select Case "1500"
  2.     Case 0 To 9
  3.         MsgBox "Number"
  4.     Case Else
  5.         MsgBox "No Number"
  6. End Select