D
Drew Shriner
I'm managing a database for a conference that is to start
next week, and we have multiple sessions that each person
can register for, but each session is limited to 30
attendees maximum. Here is our structure so far:
[Attendee_Information]
RegID PK
first_name
last_name
etc
[Session_ChildObjects]
Session_ChildObjectID PK
Session_ParentObjectID
ListItem
[Session_Registrations]
Session_Registration_ID PK
RegID
Session (where "Session" is a lookup to the
above "ListItem")
Each attendee, known by their attendee number (RegID),
registers for whatever sessions needed. I have generated
reports and forms for displaying a list of people
registered in each session. I need to be able to see how
many people are currently enrolled in each session,
without manually counting how many people are in the list.
What would be the best way to do this?
Wouldn't the best way be to count how many occurances
there are in [Session_Registrations]![Session] for each
session?
I don't know all that much about this particular thing,
even though I've worked (infrequently) with Access for a
year or so now.
I apologize if I wasn't clear enough...
next week, and we have multiple sessions that each person
can register for, but each session is limited to 30
attendees maximum. Here is our structure so far:
[Attendee_Information]
RegID PK
first_name
last_name
etc
[Session_ChildObjects]
Session_ChildObjectID PK
Session_ParentObjectID
ListItem
[Session_Registrations]
Session_Registration_ID PK
RegID
Session (where "Session" is a lookup to the
above "ListItem")
Each attendee, known by their attendee number (RegID),
registers for whatever sessions needed. I have generated
reports and forms for displaying a list of people
registered in each session. I need to be able to see how
many people are currently enrolled in each session,
without manually counting how many people are in the list.
What would be the best way to do this?
Wouldn't the best way be to count how many occurances
there are in [Session_Registrations]![Session] for each
session?
I don't know all that much about this particular thing,
even though I've worked (infrequently) with Access for a
year or so now.
I apologize if I wasn't clear enough...