Thanks for the reply John.
The tables are all different types of Contact numbers. I work in a Command
Center and we have tons of phone numbers to access and maintain. I am fairly
new to Access so I imported all of these from Excel that people had already
done.
I created forms so people can update them easily, Is there a better way to
do this?
Yes, there certainly is. Use Access as a relational database, rather
than as a substitute spreadsheet!
All these different types of Contacts are... contacts. They should all
be in ONE table, with a Type field to distinguish which type of
contact each person is.
You'll actually probably need two or three tables - but not for
contacts of different types. Assuming that there might be duplicates
across these tables (i.e. that the same person might serve as two or
three different types of contact), and that each person might have
one, two, or several phone numbers (home, work, cell, pager), you
might want tables such as:
Contacts
ContactID <Primary Key>
LastName
FirstName
<other information specific to this person>
Types
Type <Primary Key>
ContactTypes
ContactID <link to Contacts>
Type <Link to Types>
Phones
ContactID <link to Contacts>
PhoneType <e.g. Home, Cell, ...>
PhoneNumber
This gives you ONE form - with a couple of subforms - and ONE query to
find all the information about any person, without needing to search
multiple tables.
John W. Vinson[MVP]