I have two source tables, one with employee info and another with client performance data. In order to map employees to performance for clients they are associated with, I have a make table query for each employee. The result is 10 tables, one for each employee.
I want to create a table that combines the results of all 10 of my employee tables, but append/make table options do not work because they repeat the fields over for each table. So if there are 5 fields in each of my 10 tables, the result is 50 columns, the same five repeated for each of my 10 employees. What I want is for all of the data to fall into the five common fields.
It would also be great to automate this process as the two source tables are updated weekly. Any macro advice on quickly updating the source tables, running the make table queries, joining them all into one table and exporting to excel would be greatly appreciated as well. Result is going to be 100,000 rows + if that matters on the export bit.
Thanks.