I'm using Access, and I have a table of forms that people submit. I need to find all of the people who submitted forms in one month but not another. More specifically, I need to find all of the forms that are in a set where they match A
in a type
field, June
in a month
field, and August
in a processed
field which are not in a set where they match B
in the type
field and August
in the month
field.
Many people are supposed to submit additional forms in a later month, and I'm trying to find who hasn't done that.
I found this question: SQL: select all records not selected by another query. It seems similar, but I'm not really looking for duplicates.