Here is what I am trying to accomplish:
tables:
tbl_users
user_id autonumber
name text
tbl_readfile
readfile_id autonumber
readfiletitle text
tbl_signedoffreadfiles
signreadfile_id autonumber
user_id number
readfile_id number
So here is what I want: a query that lists readfiles that don't have an entry in the signedoff table for each user. For example if I have user 1 & 2, and 3 readfiles (1,2,3) and user 1 has signed off 1 & 2 and user 2 has signed off 2, the output should be something like:
user _id readfile_id
1 3
2 1
2 3
Does this make sense? It would also be equivalent to having a question bank and seeing which questions weren't answered by each user.
Thanks for your help.