
March 21st, 2003, 12:47 AM
|
|
Contributing User
|
|
Join Date: Feb 2003
Location: Melbourne, Australia
Posts: 212

Time spent in forums: < 1 sec
Reputation Power: 11
|
|
The reason you are not getting a match is that the statement
Var1 = 3
sets Var1 to numeric 3, whereas the string you are comparing to is text. Numeric 3 and text 3 are not the same. So try one of the following, declare Var1 as text by using
Var1 = "3"
Or try accessing Var1 as text using
Var1.text
One of these should work.

__________________
How can I soar like an eagle when
I'm flying with turkey's?
|