J
Jesper F
This function returns 1 even though I feed it 5 and I don't understand why.
Function t(i As Integer)
Select Case i
Case Is > 1, Is < 5
t = 1
Case Is > 4, Is < 11
t = 2
End Select
End Function
Can you help? Thanks.
/ Jesper
Function t(i As Integer)
Select Case i
Case Is > 1, Is < 5
t = 1
Case Is > 4, Is < 11
t = 2
End Select
End Function
Can you help? Thanks.
/ Jesper