I'm trying to create an attendance database. However, instead of asking a user to find a person's name and enter the date he/she attended, I would like to create a form that asks for a date, then populates people's name, and include a checkbox.
Any ideas on how to go about creating a form kind of like an attendance sheet?
Currently I have two tables:
Teacher Info
TeacherID | FirstName | LastName | School | Active
Attendance
TeacherID | Date
I read through some checkbox threads and it says I need to bound the checkbox to a field. So, I was thinking about adding a checkbox field to Attendance table but that would make the table really big. If possible, I would only like to include dates attended.
Any design help would be greatly appreciated...or links to other threads or websites. Thank you.
Any ideas on how to go about creating a form kind of like an attendance sheet?
Currently I have two tables:
Teacher Info
TeacherID | FirstName | LastName | School | Active
Attendance
TeacherID | Date
I read through some checkbox threads and it says I need to bound the checkbox to a field. So, I was thinking about adding a checkbox field to Attendance table but that would make the table really big. If possible, I would only like to include dates attended.
Any design help would be greatly appreciated...or links to other threads or websites. Thank you.