looking for queried out records (1 Viewer)

Thedon123

Registered User.
Local time
Today, 11:34
Joined
Sep 11, 2002
Messages
98
I have a query that matches one code to anoteher.

There are normally 2000 records.

i only get 1500 displayed.

how do find the ones that are not being displayed

Thanks
 

KKilfoil

Registered User.
Local time
Today, 06:34
Joined
Jul 19, 2001
Messages
336
Try the 'Find unmatched records' query wizard, using your original table and your query that only returns 1500 records.
 

Pat Hartman

Super Moderator
Staff member
Local time
Today, 06:34
Joined
Feb 19, 2002
Messages
43,522
A query that uses an Inner Join (default join type) will return rows ONLY when a row in tblA has a matching row in tblB. If you want all the rows of tblA returned along with any matching data from tblB, you need to change the Join type to Left or Right depending on the table order that you see in QBE view. Left if you want all the rows from the table on the left side of the join. Right if you want all the rows from the table on the right side of the join.
 

Users who are viewing this thread

Top Bottom