Hi all,
New to the forum and fairly new to Access 2003, please help... "Not Like" is refusing to work in my query - but "Like" works just fine! What would be causing that? I'm trying to filter out any client records from my database that have ZZ in the Client Code. If I filter with Like, it shows me all the ones that do have it in, but if I filter with Not Like, it just shows me all records. What gives?
Query is below:
New to the forum and fairly new to Access 2003, please help... "Not Like" is refusing to work in my query - but "Like" works just fine! What would be causing that? I'm trying to filter out any client records from my database that have ZZ in the Client Code. If I filter with Like, it shows me all the ones that do have it in, but if I filter with Not Like, it just shows me all records. What gives?

Query is below:
Code:
SELECT [Relationships - All Info].Contact1ID, [Relationships - All Info].[Contact 1 Client Info].ClientCode, [Relationships - All Info].[Contact 1 Data].[Contact Name], [Relationships - All Info].Contact2ID, [Relationships - All Info].[Contact 2 Client Info].ClientCode, [Relationships - All Info].[Contact 2 Data].[Contact Name], [Relationships - All Info].RelationshipID, [Relationships - All Info].Twist, [Relationships - All Info].ContactContact
FROM [Relationships - All Info]
WHERE ((([Relationships - All Info].[Contact 1 Client Info].ClientCode) Not Like "%zz%"));