Ultimate Newbie Question

CaptAhab

New Member
Joined
Apr 25, 2005
Messages
11
I have two tables.

Jim | 50
Tom | 45
Erin | 35

and

Ian | 45
Steve | 55
Elvis | 30

How would I get these to join into on list

Elvis | 30
Erin | 35
Ian | 45
Jim | 50
Steve | 55
Tom | 45
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Let's say that your table names are Table1 and Table2.

Go to the Query Builder.
Select New Query, and go to Design View.
Go to View and change to SQL View.
Then paste the following code in the resulting window:
Code:
SELECT Table1.*
FROM Table1
UNION
SELECT Table2.*
FROM Table2;
Change table names to the appropriate values for you.

Save & view the results.

Alternatively, you can also use an Append Query to add the values from one table to the other. See Access's help on Action Queries for instructions on that.
 
Upvote 0

Forum statistics

Threads
1,221,907
Messages
6,162,777
Members
451,788
Latest member
Hideoshie

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top