Sep 10, 2008 #1 NBVC Technical User Joined Sep 18, 2006 Messages 80 Location CA Hi, I have 2 tables.. a PART table and an INVENTORY_TRANSACTION table. How would I query all the Parts in the PART table that do no appear in the INVENTORY_TRANSACTION table.... (Both contain PART_ID field). Thanks.
Hi, I have 2 tables.. a PART table and an INVENTORY_TRANSACTION table. How would I query all the Parts in the PART table that do no appear in the INVENTORY_TRANSACTION table.... (Both contain PART_ID field). Thanks.
Sep 10, 2008 1 #2 lbass Technical User Joined Feb 9, 2002 Messages 32,818 Location US Use a left join FROM the Part table TO the inventory transaction table, and then use a record selection formula like this: isnull({inventory_transaction.part_id}) -LB Upvote 0 Downvote
Use a left join FROM the Part table TO the inventory transaction table, and then use a record selection formula like this: isnull({inventory_transaction.part_id}) -LB
Sep 10, 2008 Thread starter #3 NBVC Technical User Joined Sep 18, 2006 Messages 80 Location CA Thank you very much LB... I think it worked! Upvote 0 Downvote