I have two tables Table1 and Table2 in my Access database. Table1 has 50 columns and Table2 has 30 columns. I would like to merge Table2 with Table1 without copying any entries from Table2 that have the same values as the values in column1 to column30 for an entry in Table1.
Please note that the columns order and names are the same in Table1 and Table2 up to the 30th column.
I have pretty much the same problem as this question How do I merge two tables with different column number while removing duplicates? however in his case the tables are much smaller (Table1 has 3 columns and Table2 has 2 columns), so a SQL statement would be too impractical in my case.
Is there a more practical way to accomplish this, perhaps using a combination of VBA and SQL? Thanks in advance.