Just Adding some more information to my question.
The table I am selecting from the combo box is called (siteEquip) and Using
field Name "Equipment Number" other Fields I need to link are "Location" &
"Area Serves" & "Maufacture"
When I select "Equipment Number" need to insurt information into the other
table called (MaintEquip) and the fiels are "Location " & "AreaServing" &
"Make"
Why?
Storing this data redundantly in a second table wastes space; far more
importantly, it risks data validity. Suppose you have a record in
SiteEquip with a Location value that's wrong; you edit the table and
correct the erroneous location.
Now you have a whole lot of records in MaintEquip *WITH THE OLD
LOCATION*. It's wrong. And there's no easy way to detect that these
records all have an incorrect location!
I'm almost certain that your MaintEquip table should NOT contain these
fields. They can readily be obtained by creating a Query joining
MaintEquip to siteEquip.
If I'm misunderstanding, please post back... but I'd say you do NOT
want to do this.
John W. Vinson[MVP]