S
Scott
I am working on a database with the primary function of tracking attendance
for many people to many events. The database is set up so that there is a
table of personnel and a table of events where each user's name and each
event appear once respectively. Connecting these two tables is another table
which has a record containing each event for each individual. A yes/no is
then used to indicate that the individual has attended the event. For
example:
tblAttendance:
Attendance ID | UserID | EventID | Complete
1 | 1 | 1 | Yes
2 | 2 | 1 | Yes
3 | 1 | 2 | No
4 | 2 | 2 | Yes
What I need now is an administrative function to add people and events.
That is a function which when a new user is added to the database a new
record is added to the attendance table for each event in the event table.
The same process would then be applied to adding events. The process needs
to be very simple for the administrator of the database and manually copying
in new records from excel is not considered to be easy enough. Thank you.
for many people to many events. The database is set up so that there is a
table of personnel and a table of events where each user's name and each
event appear once respectively. Connecting these two tables is another table
which has a record containing each event for each individual. A yes/no is
then used to indicate that the individual has attended the event. For
example:
tblAttendance:
Attendance ID | UserID | EventID | Complete
1 | 1 | 1 | Yes
2 | 2 | 1 | Yes
3 | 1 | 2 | No
4 | 2 | 2 | Yes
What I need now is an administrative function to add people and events.
That is a function which when a new user is added to the database a new
record is added to the attendance table for each event in the event table.
The same process would then be applied to adding events. The process needs
to be very simple for the administrator of the database and manually copying
in new records from excel is not considered to be easy enough. Thank you.