Danielle17
Technical User
I'm trying to run a query using a criteria expression. The query contains all the info for a 'customer phone book'. In the table that the query is run from there is a column called RepCode. If that column has a 999 in it then I don't want that record displayed in the query. I've tried using Not "999" and Not 999. But if I do that then it doesn't retrieve the records where the column is blank.(If the customer doesn't have a repcode the column is left blank)I think this has something to do with null values. So I tried Not "999" and Is Not Null....that returns all the previous records and just one of the records with a null value. Anybody know what I'm doing wrong?