Sorry I guess that I didn't make my problem totally clear, I do have two
tables that use some of the same info, Like first, and last name.
Then your tables are NOT correctly normalized.
what I was
wanting to do was If I type the last name in form A that access would fill in
the form with the first name and any other info that is used in both tables
Ei I have a personnel form and a training form with respective tables. how do
I go about linking both tables. or do I just need to do a query from both
tables?
By correctly normalizing your table structure, for instance:
People
PersonID
LastName
FirstName
<other information about the person>
Training
PersonID
<information about the training that this person received>
The last name and first name should exist in the People table AND
NOPLACE ELSE. Storing it redundantly in the training table is a very
bad idea, and is not necessary.
Typically you would use a Subform for the training, using the unique
PersonID as the master/child link field.
John W. Vinson[MVP]