Hi
I'm recording information about people attending training courses. There are three tables
1 - tblStaff (StaffID, FirstName, Surname)
2 - tblCourse (CourseName)
3 - tblAttendance(StaffID,CourseName,Date)
Table three is a many to many junction table as you can see.
(This is a simplified version of my tables).
I need to query this table to find all staff who haven't attended a certain course.
If I do a standard query where my criteria says <>CourseNameA, that doesn't stop the staffID of people who have been on courseA appearing on my list, as they have been on coursesB and therefore still match the criteria of <>CourseNameA. - I hope that makes sense.
What I need to do is get that list, but remove anyone who has been on CourseA.
Can anyone help me acheie this please.
Thanks very much
I'm recording information about people attending training courses. There are three tables
1 - tblStaff (StaffID, FirstName, Surname)
2 - tblCourse (CourseName)
3 - tblAttendance(StaffID,CourseName,Date)
Table three is a many to many junction table as you can see.
(This is a simplified version of my tables).
I need to query this table to find all staff who haven't attended a certain course.
If I do a standard query where my criteria says <>CourseNameA, that doesn't stop the staffID of people who have been on courseA appearing on my list, as they have been on coursesB and therefore still match the criteria of <>CourseNameA. - I hope that makes sense.
What I need to do is get that list, but remove anyone who has been on CourseA.
Can anyone help me acheie this please.
Thanks very much