That did not quite work, maybe because I'm working in MS Access, but it got me going in the right direction.
For some reason it did not like unioning two tables and creating a third, I kept getting errors when I added the INSERT INTO.
Here's what I ended up doing, and it works perfectly!
Query1 is a Union Query
select table1.* FROM table1
UNION ALL select table2.* FROM table2;
Query2 is a Make Table Query
SELECT Query1.*, * INTO Table3
FROM Query1
ORDER BY a , b, c;
By running Query2, Query1 is run to get the unioned Table1 and TABLE2. The tables are formatted and sorted int Table3.
Thanks Tony, you gave me the clues I needed!
Lou