A
Al
The following code does not work I do not know why. the number that I am
checking is "0.00338076308652524" which is < 1 but I am not getting the
result which is " less than" in the text box "RF34d" (RF34d =
NumbertoLetters(RF34c))
any idea?
thanks
***********************************************
Private Function NumbertoLetters(numTolet As Integer) As String
Select Case Format(numTolet, "##")
Case Is < 1
NumbertoLetters = " less than"
end select
end function
**********************************************
checking is "0.00338076308652524" which is < 1 but I am not getting the
result which is " less than" in the text box "RF34d" (RF34d =
NumbertoLetters(RF34c))
any idea?
thanks
***********************************************
Private Function NumbertoLetters(numTolet As Integer) As String
Select Case Format(numTolet, "##")
Case Is < 1
NumbertoLetters = " less than"
end select
end function
**********************************************