Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display data that is in Table A and not in Table B

Status
Not open for further replies.

cglass1015

IS-IT--Management
Jul 1, 2005
39
US
I am trying to generate a report that will display records in Table A that cannot not be found in Table B. The two tables are related to one another.

I am not sure what the best way to approach this report. Any suggestions would be greatly appreciated.

Thanks
 
Use a left join FROM tableA to tableB on a common field, e.g., {tableA.ID} ->{tableB.ID}. Then use a record selection formula like:

isnull({tableB.ID})

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top