Hi folks.
I'm using MS Access 2010 with a frontend/backend type database.
I'm attempting to take two columns (Name1, Name2) from one table and combine (stack) them into another.
Original:
Name1 Name2
Smith Lawson
Doel Carl
Desired Result:
Name
Smith
Doel
Lawson
Carl
I can run a query to union the two columns in Table1, but how do I get them from the query to Table2?
Any help is greatly appreciated!