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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to show records that do not exists

Status
Not open for further replies.

azzi2000

MIS
Jan 28, 2004
145
US
Table1: orderid, cust, date,notes
Table2: orderid, item, qty, price,....
Table1.orderid -> table2.orderid

How can I have a report to list order in table2 that do not exists in table1.

I clikc on the link option and the Not equal sign but it is not working.
Please advice,
Thank you.
Dré
 
Use a left join FROM Table2 TO Table1. Then use a record selection formula like:

isnull({Table1.orderid})

Place your {Table2.orderid} field in the detail section along with any other Table2 fields you wish to display.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top