I'm trying to set a List Box up to display all records from one table that are not found in another table. For Example.
tbl1:
ID | Service
1 | Srv1
2 | Srv2
3 | Srv3
tbl2:
ServiceID
1
I want the display to be
Srv2
Srv3
Because the ID Column for Srv1 is found in tbl2.
Is this possible?
Let me know if I need more explanation
tbl1:
ID | Service
1 | Srv1
2 | Srv2
3 | Srv3
tbl2:
ServiceID
1
I want the display to be
Srv2
Srv3
Because the ID Column for Srv1 is found in tbl2.
Is this possible?
Let me know if I need more explanation