jvleigh221
IS-IT--Management
Here is the SQL in a generic form:
SELECT TABLE.FIELD1, TABLE.FIELD2, TABLE.FIELD3
FROM TABLE
WHERE (((TABLE.FIELD3)<>"CRITERIA1" And (TABLE.FIELD3)<>"CRITERIA2" And (TABLE.FIELD3)<>"CRITERIA3" And (TABLE.FIELD3)<>"CRITERIA4"));
This SQL statement is used as an Access form's Record Source.
However, now the records that may have an empty or null value for Field3 are excluded, as well.
Any suggestions are apprciated.
SELECT TABLE.FIELD1, TABLE.FIELD2, TABLE.FIELD3
FROM TABLE
WHERE (((TABLE.FIELD3)<>"CRITERIA1" And (TABLE.FIELD3)<>"CRITERIA2" And (TABLE.FIELD3)<>"CRITERIA3" And (TABLE.FIELD3)<>"CRITERIA4"));
This SQL statement is used as an Access form's Record Source.
However, now the records that may have an empty or null value for Field3 are excluded, as well.
Any suggestions are apprciated.