Start time/date refers to each of the individual events. Some of the
events are: "community service", "administration", "vehicle
maintenance", etc.
Then they need to be in the event table.
What Entity - real-life person, thing, or event - is represented by
your main table? You have stuff all over the map - you have a field
for Event1 and Event2 and Event3, but you have a Start Date and a
Start Time in THE SAME RECORD. That makes no sense; which of the three
events does it apply to!?
Definitely - different participants for each event.
So: same problem. You have a list of participants in the same record
with Event1 and with Event2 and with Event3.
Sorry - didn't mean to be off-base - still kind of learning Access and
newsgroup operation.
No harm, no foul... just making the groundrules clear.
So if I have a current rec with 20 participants in the one field - the
attendees tbl will have 20 separate entries now?
Yes. Actually, the Attendees table will have probably many hundreds of
entries; for each Event it will have one record for each person
attending that event. "Records are cheap, fields are expensive" is an
old saying in this group!
EventID can be an abbreviation of the event name itself - if I'm
grasping this correctly?
EventID should be the Primary Key of the Events table (every table
must have a Primary Key). The desiderata for a primary key are that it
should be UNIQUE - every event must have its own distinctive ID; it
should be STABLE - not something you'll edit often (or at all); and it
should preferably be SHORT, so that indexes using it will work
efficiently. It's not especially important that it be meaningful to a
human looking at the table! For instance, you might have an Autonumber
eventID; Event 32 might be the Administration event held on October
17, and Event 33 might be the Community Service event held on October
20. In a Form you'ld use a combo box to display the human-meaningful
title and date, while storing the computer-meaningful unique ID.
If you have multiple Administration events, then NO - calling all of
them "Admin" as the EventID would emphatically NOT work; that would
not be unique!
I really recommend reading some of the tutorials in Jeff's newsgroup,
posted upthread. A lot of this terminology will make more sense if you
do.
John W. Vinson[MVP]