How to combine data from three separate worksheets into another worksheet?

Mr. Snrub

Board Regular
Joined
May 22, 2005
Messages
147
Office Version
  1. 365
Platform
  1. Windows
In Sheet1 I have "Date", "Description", and "Amount". In Sheet2 I also have "Date", "Description" and "Amount. In Sheet3 I have "Date", "Description" and "Amount". I want to create a Sheet4 that combines all the records in each of these tables so I can see ALL records in one table. And I want this new table to be added automatically when I add new records to any of the first three tables. How do I do this?
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Use Power Query.
There are many Youtube channels that have great tutorials on Power Query.
These channels are my gotos: ExcelIsFun, Mr. Excel, MyOnlineTrainingHub, and Leila Gharani.

Here is a Power Query video about combining tables:

 
Upvote 0
Another option is to use
Excel Formula:
=LET(v,VSTACK(Sheet1:Sheet3!A2:C200),FILTER(v,INDEX(v,,1)<>""))
 
Upvote 0

Forum statistics

Threads
1,215,256
Messages
6,123,915
Members
449,132
Latest member
Rosie14

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