I have 3 tables, tblPhysician, tblMeeting, tblAttendance. tblAttendance has the joint primary keys of tblPhysician (physID) and tblMeeting (mtgID), along with a Y/N field for "in attendance". What the users want is a form that lists the date of the meeting,each physicians name (the names are static), and has a yes/no checkbox for "in attendance". (Which of course insinuates unchecked was not in attendance). Using the current table design, what is the best way to achieve this? Thanks!