Adding two tables together

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two tables which list employees who have completed mandatory testing
for each subject. What I would like to do is combine the data into 1 table
listing the employee name (key), test one (Complete,In Progress, Not
Accessed), and test two (True/False). I have tried a make table query but am
running into problems with duplicate data. The max number of employees are
477 but I am either returning 27 or 239685 records. What am I missing?

Thanks in advance...
 
If you want to add table 2 to table 1, just do an append query. You get
duplicate data problems because you have set your Key on the name, most
likely. Do the tables have history of completions? What about if you have
two individuals named John Smith?
 
I have two tables which list employees who have completed mandatory testing
for each subject. What I would like to do is combine the data into 1 table
listing the employee name (key), test one (Complete,In Progress, Not
Accessed), and test two (True/False). I have tried a make table query but am
running into problems with duplicate data. The max number of employees are
477 but I am either returning 27 or 239685 records. What am I missing?

Thanks in advance...

What are the structures of the two tables? If you wish to see data
from both tables, I strongly suspect that you can use a Query joining
them - it is emphatically NOT necessary to create a new table!

How are the two tables related? What fields are in which? What is the
Primary Key of each table?

John W. Vinson[MVP]
 

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

Back
Top