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

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
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,216,218
Messages
6,129,572
Members
449,518
Latest member
srooney

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