Table2 was a table made from Table1 from a make a table query so the fields
are the same. The criteria I would like to use is a list of account numbers
from Table3. The field has the same name 'account number' as the other 2
tables.
I hope I was clearer today. I made my first post at night after a long day!
Well, I'm still confused. It sounds like Table2 contains the same records as
Table1 (which is redundant and bad design), and you want to add records
from... Table1. Wouldn't they already be there!?
That said, you can create a Query joining Table1 to Table3 by Account Number.
This query will contain all records in Table1 which have a matching account
number in Table3. You can then change the query into an Append query,
specifying Table2 as the target.
The entire process smells very fishy to me though!!!