MERRY CHRISTMAS and a HAPPY NEW YEAR!!!!
I'm not sure how to put this very clear. Here it goes: I am trying to place new records from a table to a new table. I did an append query to place the records from one table to the other. But my next problem is, I need to append again -- but this time, only those new records should be in the new table.
For example:
table1 has: record1, record2, record3, record4
then I do an append to table2
therefore, table2 will have record1, record2, record3, record4
then table1 gets an additional records
so, table1 has record1, record2, record3, record4, record5, record6
then I will do another append query to update table2, but I need table2 to be: record5, and record6 only. since record1 to record4 were already used.
Please help me on this one. I couldn't figure out how to solve this. If you have any other solutions to do this task, please let me know. Thank you.

I'm not sure how to put this very clear. Here it goes: I am trying to place new records from a table to a new table. I did an append query to place the records from one table to the other. But my next problem is, I need to append again -- but this time, only those new records should be in the new table.
For example:
table1 has: record1, record2, record3, record4
then I do an append to table2
therefore, table2 will have record1, record2, record3, record4
then table1 gets an additional records
so, table1 has record1, record2, record3, record4, record5, record6
then I will do another append query to update table2, but I need table2 to be: record5, and record6 only. since record1 to record4 were already used.
Please help me on this one. I couldn't figure out how to solve this. If you have any other solutions to do this task, please let me know. Thank you.