I have several tables in this database 3 of which relate to this issue. tblMembers has several fields, but these are the relevant ones: Member ID, First Name, Last Name. tblEvents has all my events with fields Event ID, Event Name, Location, Date. tblAttendance has Member ID, First Name, Last Name, Event ID.
I already have the forms for data entry. What I'm wanting to do is show in a report the people who didn't attend a certain event. For example in the tblAttendance table list all the people who were present, then run a report that checks to see which member id's weren't there.
1)The Member ID's increment by 1 so I thought of checking the list for gaps (not sure how to do it). Then extract the missing numbers and print their records from the tblMembers table. I'm not sure how efficient this would be, it could be trouble if a member was deleted.
Preferred:
2)Somehow check the list against tblMembers and if it exists in tblMembers but doesn't in tblAttendance for the this Event ID then print those names.
My forms are like this [frmMembers], [frmEvents] w/ sub form on it [frmAttendance subform].
Any help is appreciated, even a nudge in the right direction will help.
Eric
I already have the forms for data entry. What I'm wanting to do is show in a report the people who didn't attend a certain event. For example in the tblAttendance table list all the people who were present, then run a report that checks to see which member id's weren't there.
1)The Member ID's increment by 1 so I thought of checking the list for gaps (not sure how to do it). Then extract the missing numbers and print their records from the tblMembers table. I'm not sure how efficient this would be, it could be trouble if a member was deleted.
Preferred:
2)Somehow check the list against tblMembers and if it exists in tblMembers but doesn't in tblAttendance for the this Event ID then print those names.
My forms are like this [frmMembers], [frmEvents] w/ sub form on it [frmAttendance subform].
Any help is appreciated, even a nudge in the right direction will help.
Eric