I would suggest you following code:
If number <= 19.1 Then
tekst = "Short"
Else If number <= 25.9 Then
tekst = "Tall"
Else If number <=27.3 Then
tekst = "High"
Else
tekst = "XXL"
End If
In the code above, when one condition is satisfied the others are no more tested. In your example all If/Then tests will be done, even if the first one is satisfied.
Be careful,
number >= 25.9 is not the same as
number > 25.8
What about 25.85, it will not be in the same category if you use one or the other comparison.
Best regards.