Since you cannot do < (less than) and > (bigger than) in SELECT CASES, if you are looking for ranges, I hope this is what you are looking for. If not, please provide more details:
B4X:
Dim tmp As Float
Dim Itmp As Int
Itmp=Floor(tmp)
Select Itmp
Case 0 'handles 0 to 0.99
Msgbox("Case 0 to 0.99. Your number is: " & tmp ,"")
'Do this
Case 1 'handles 1 to 1.99
Msgbox(" Case 1 to 1.99. Your number is " & tmp ,"")
'Do the other
Case 2,3 'handles 2 to 3.99
Msgbox("Case 2 to 3.99. Your number is " & tmp ,"")
'Do that
Case Else 'handles 4 and above
Msgbox("Case 4 and above. Your number is: " & tmp ,"")
'Do something else
End Select