G
Guest
I have a table with a text field. I want to display those records which
value is greater than 1000. There is some nonnumeric values in the field so
I want to exclude them. I tried the following two queries but Access
displayed error message saying that there is type mismatch. Can anybody help?
SELECT Table1.*
FROM Table1
WHERE (((Val([Field1]))>1000));
SELECT Table1.*
FROM Table1
WHERE (((IsNumeric([Field1]))=True) AND ((Val([Field1]))>1000));
value is greater than 1000. There is some nonnumeric values in the field so
I want to exclude them. I tried the following two queries but Access
displayed error message saying that there is type mismatch. Can anybody help?
SELECT Table1.*
FROM Table1
WHERE (((Val([Field1]))>1000));
SELECT Table1.*
FROM Table1
WHERE (((IsNumeric([Field1]))=True) AND ((Val([Field1]))>1000));