I am not sure what the best way to combine multiple tables into one table without causes duplicates is. I appended the tables to the main table but when I wanted to append again (with all the new rows) it pulled in everything that was already in the table. I dont want any duplicates - just a full list of all the items. I looked at a union query; however, there are 4 tables and they all have different amounts of columns so the query wont work. I cant do them separate either...so I am not sure what to do. I dont want to run a query to find the duplicates and delete that way - there will be too many and inefficient. I want a way to pull in either the new rows or delete the current main table and replace with each tables current listing. Any ideas?