Hello all,
We have a flat table of events (table_events) containing dates, times, people, and comments (among other fields) - 10's of events are entered into the database daily.
Once / day there is a meeting where events are discussed by several people from one of four different companies. During the meeting a form displays the details of each event.
The people at the meeting change, but the companies present is static.
I need to record who was present at each meeting.
The question is how to do this?
Based on my DB reading so far I would:
Create a table table_meeting
Fields:
Event ID, PersonID, Date_of_Meeting
Create a table_people
PersonID, First Name, Surname, Company
Assuming the above is correct, I am a little fuzzy on whether I need to link the tables?
When I open the form that opens the record set at the beginning of the meeting how would I record the attendees? Another form? Two boxes where you drag the list of potential people to the actual ones attending?
Cheers
-Al