Ryan
Are you saying "move data from one table to another", or "copy data from one
table to another"?
First, make a backup copy of the database. Make two. Make three, just to
be safe ... you are talking about changing data.
Create a query joining the tables on their shared field(s) (?SSN). Add the
fields from the table without the data.
Convert the query to an Update query. In the Update To space beneath those
'empty' fields, put in a reference to the fields in the table that does have
values. It might look something like:
[table2]![YourFullField]
where table2 is the name of the table with the data in the field, and
"YourFullField" is the name of the field that has data and corresponds to
[table1]![YourEmptyField].
Good luck!
Regards
Jeff Boyce
Microsoft Office/Access MVP
Ryan said:
how would I combine data from two tables into one? I have SSN as primary
key
in both and want to take a few columns from one and put into the other but
want the data to match to the correct SSN in the table importing to.
"baseballs"