I've looked around and found things similar but not exactly this. I essentially have two lists.
tbl_allData has every ID
tbl_completedFo rm is a subset list of allData
I would like a query [remainingList] to give me all IDs from tbl_allData except for those IDs found in tbl_completedFo rm.
I know this should be simble, but I've tried all manner of SQL statements, joins, and <> to do this, with no luck. It'd be easy enough if I just wanted it to be WHERE ID <> (some specific value). I just don't know how to get it so that it displays every ID that doens't equal any other ID in another list.
I am very grateful for help, as always.
tbl_allData has every ID
tbl_completedFo rm is a subset list of allData
I would like a query [remainingList] to give me all IDs from tbl_allData except for those IDs found in tbl_completedFo rm.
I know this should be simble, but I've tried all manner of SQL statements, joins, and <> to do this, with no luck. It'd be easy enough if I just wanted it to be WHERE ID <> (some specific value). I just don't know how to get it so that it displays every ID that doens't equal any other ID in another list.
I am very grateful for help, as always.
Comment