You need to create an 'Unmatched' query to find all records in Table1 that are not in Table2 and append them to Table2, this is available from the wizard.
The query will look something like below
SELECT Table1.*
FROM Table1 LEFT JOIN Table2 ON Table1.Field1 = Table2.Field1
WHERE...