In the following snippet
Why f<i is always False, no matter which value i enter?
Antoni
Code:
option explicit
dim i: i=5
dim f: f=inputbox ("","",0)
msgbox "f=" & f & " i="& i & " f<i is " & (f<i) & " f<5 is " & (F<5)
Antoni