Linking Fields in Multiple Tables

G

Guest

I have a main table called Contract Profile where all the main information
for the contract is stored. I created a query and form for the user to input
contract information. for the Contract profile.

I have several other talbes for Assessing the Contract and want to pull a
few fields from the Contract Profile table (ID (unique, indexed, no
duplicates, primary key); Contractor, Contract Number) to auto populate in
the Assessment tables i've created.

The contract profile will stay the same but several assessments need to be
done throughout the year; therefore, i will need those fields listed above
auto populated anytime i need to create an assessment from one of the
contract profiles. Can this be done?

Any help is appreciated.
 
M

Marshall Barton

Ray said:
I have a main table called Contract Profile where all the main information
for the contract is stored. I created a query and form for the user to input
contract information. for the Contract profile.

I have several other talbes for Assessing the Contract and want to pull a
few fields from the Contract Profile table (ID (unique, indexed, no
duplicates, primary key); Contractor, Contract Number) to auto populate in
the Assessment tables i've created.

The contract profile will stay the same but several assessments need to be
done throughout the year; therefore, i will need those fields listed above
auto populated anytime i need to create an assessment from one of the
contract profiles. Can this be done?


Duplicating data is a big No No. Just use a foreign key in
the assessment table to link back to the related contract
record. Any time you want the data from both tables, use a
query that Joins the two tables.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top