Given the fact that adding Case after select (which I also do) does compile without error and the syntax color shows it is fairly acceptable to IDE, I guess Documentation needs to show it as optional
Dim b As Double = 101
Select Case b 'select case... actually case or not... not make so much difference!
Case 1
Log("xxx")
Case 200
Log("zzz")
Case Else
If LikeTo(b,100,120)=True Then
Log("OK")
Else
Log("too bad")
End If
End Select
Sub LikeTo(num As Double,a1 As Double, a2 As Double) As Boolean
If num>=a1 And num<=a2 Then
Return True
Else
Return False
End If
End Sub