I have 2 tables in my database SessionMembers (a list of all members) and SessionAttendance (records whether member attended session) What I am trying to do is create a form which records members attendance. My form frmSessionRegistration is linked to
both tables. I have a Combobox that is populated from SessionMembers to provide FullNames for the frmSessionRegistration and a Tickbox ( from SessionAttendance) to state Yes/No for attendance, when the form is saved it is saved to SessionAttendance. This all
works very well, however my ideal scenario would be instead of doing one record at a time to be able to list ALL the names from SessionMembers on the form at the same time and then the user can simply check the Tickbox at the side of the FullName to say yes
or no for attendance, this would then be saved to SessionAttendance.. Is this possible?
↧