I'm looking for any advice on doing an attendance form that's easy for the end user.
I would like it to have a grid/excel feel to it since that is what they are used to.
I was thinking of having a form populate a list of people who are enrolled in the program and then entering 3 items: AttendanceDate, Status, and DailyPoint. I also need to snag to other key fields as well. Maybe do this on a daily basis, so I would prepopulate the current date or let them select if they forgot to do it that day.
I'm not sure about the best way for this, but I'd like for them not to have to go to every record one by one just to enter the attendance info. It would be much easier to have it on one view and then do an insert from that 1 view into the Attendance table.
Here's my table info FYI.
I would like it to have a grid/excel feel to it since that is what they are used to.
I was thinking of having a form populate a list of people who are enrolled in the program and then entering 3 items: AttendanceDate, Status, and DailyPoint. I also need to snag to other key fields as well. Maybe do this on a daily basis, so I would prepopulate the current date or let them select if they forgot to do it that day.
I'm not sure about the best way for this, but I'd like for them not to have to go to every record one by one just to enter the attendance info. It would be much easier to have it on one view and then do an insert from that 1 view into the Attendance table.
Here's my table info FYI.
Code:
========
tblGeneral
GeneralID (PK)
FName
LName
=========
tblProgramInfo
ProgramID (PK)
GeneralID (FK)
StartDate
EndDate
=========
tblAttendance
AttendanceID (PK)
ProgramID (FK)
GeneralID (FK)
AttendanceDate
Status
DailyPoint