I need to build a roster for my choir as well as track the members attendance
by rehearsal dates, ministry dates as well as pull number the of absences,
late arrivals etc. I'm just learning access, but know some excel. Any
suggestions?
Identify the "Entities" - real-life events, things, or people of
importance. In this case I'd suggest tables for:
Members
PersonID
LastName
FirstName
<maybe address or phone>
<maybe section, put me in as bass or baritone please>
Events
EventID
EventDate
Rehersal yes/no (yes for rehersals, no for The Real Thing)
<other fields as needed describing the event or rehersal>
Attendance
RehersalID
PersonID
Present Yes/No
Tardy Yes/No (or Integer minutes, default 0)
SangFlat Yes/No
WatchedConductor Yes/No <default No>
<etc.> <g>
You could use a Form based on the Events table with a Subform based on
Attendance, with a combo box to fill in the personID; you can then use
Totals queries and/or Reports based on these tables to count up
absences, etc.
John W. Vinson[MVP]