I need a little guidance on setting up a database. I’ve done this stuff before, but I’m rusty. If I can get some guidance and direction, I think I can do what I need to do. I just don’t know where to start.
Basically I need to set up a form for one table that includes selected data from another table.
I have a 75-record table named tblShips. Each record has a unique field named ID.
I have a form named frmShips, which gets its data from tblShips. It shows most of the data for one record from tblShips. There’s a lot of extra space on the form.
Each ship is associated with from 1-5 people. The people are all in an 80-record table named tblPeople. Each record has a unique identifier field named Handle. The records contain contact information (name, address, phone, etc.) for a given person.
Each person in tblPeople is associated with at least one ship. A few of them are associated with several ships.
I haven’t done it yet, but I can put fields in tblShips to hold the Handle of each person associated with the ship. I’d also like to include a field showing the title that each person holds on that ship. (The person with Handle john.brown can be President on one ship, and Treasurer on another)
I want frmShips to show the contact information for all the people associated with the ship from which it gets its data (max 5 — there is plenty of room on the form to show this data).
How do I get there from here? I think a subform may be involved, but I’m not sure. If VBA is involved, I can probably handle it after a little memory refreshing.