A
Angela
I have a table containing training records which includes the course number,
employee number and date for the training class. I have an unmatched query
that finds the employees that haven't attended a specific course. My
question - is there a way to find multiple courses that they haven't attended
and then group them by course number?
I am using two queries for the above task. The first one finds all the
employees that DID take the course in a specific time frame (fitlers by
course number and dates). The second query lists everyone from the employee
table that doesn't have a matched record in the first query. I then print a
report listing employees that haven't taken the course.
The 2nd query doesn't return the course number since it's looking for
unmatched records. Short of creating multiple unmatched queries and joining
them with a union query, I don't know if there's any way to find multiple
courses. I would like to be able to print a list of employees that haven't
attended certain courses (for example, all the 'required' courses).
Anyone have any ideas?
employee number and date for the training class. I have an unmatched query
that finds the employees that haven't attended a specific course. My
question - is there a way to find multiple courses that they haven't attended
and then group them by course number?
I am using two queries for the above task. The first one finds all the
employees that DID take the course in a specific time frame (fitlers by
course number and dates). The second query lists everyone from the employee
table that doesn't have a matched record in the first query. I then print a
report listing employees that haven't taken the course.
The 2nd query doesn't return the course number since it's looking for
unmatched records. Short of creating multiple unmatched queries and joining
them with a union query, I don't know if there's any way to find multiple
courses. I would like to be able to print a list of employees that haven't
attended certain courses (for example, all the 'required' courses).
Anyone have any ideas?