I just tested this and it worked fine. Did you use the wizard to create an
unmatched query?
The SQL I used is...
SELECT Test2.*
FROM Test2 LEFT JOIN Test1 ON Test2.Number = Test1.Number
WHERE (((Test1.Number) Is Null));
This displayed all the records in table 2 that did not have a match in table
1
For example, in table 2 I had records with the following "number": 123,
124, 125, 126, and 127.
In table 1, I had records for the following numbers: 123, 124, 126
When I ran the query, it showed be records 125 and 127.
Perhaps there is an issue with your query. Mybe you could post the SQL here
so we can see what you have.