Multiple sheet merger into 1 sheet

Harini1100

New Member
Joined
Mar 5, 2024
Messages
23
Office Version
  1. 365
  2. 2013
  3. 2010
  4. 2007
Platform
  1. Windows
Hello All,

I've a excel which contains day wise sales sheet for the particular month. I need all the dates into one sheet within the same excel or new excel sheet. Is there any formula or shortcut? Please help on this.

Note: Each sheet have the same column headers
Thanks in advance !
1735944005051.png
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Use Power Query to append the tables into one table.

 
Upvote 0
If you're not keen on Power Query, and you do have 365 (one of the versions you have listed on your profile) then you could use Vstack. Firstly, convert your sheets 1 & 2 to tables (I've called the tables Branch1 and Branch2 for simplicity) and use Vstack on the third sheet to combine them; like this:

Book1
ABCDEFG
1NameUnitSoldClosingColumn1Branch CodeSupervisor
2Rubber2510151A2345John
3Wax10281A2345John
4Paint322841A2345John
5
Sheet1
Cell Formulas
RangeFormula
D2:D4D2=B2-C2


Book1
ABCDEFG
1NameUnitSoldClosingColumn1Branch CodeSupervisor
2Rubber12842DC465Mark
3Wax221482DC465Mark
4Paint2510152DC465Mark
5
Sheet2
Cell Formulas
RangeFormula
D2:D4D2=B2-C2


Book1
ABCDEFG
1NameUnitSoldClosingBranch CodeSupervisor
2Rubber25101501A2345John
3Wax102801A2345John
4Paint3228401A2345John
5Rubber128402DC465Mark
6Wax2214802DC465Mark
7Paint25101502DC465Mark
8
Sheet3
Cell Formulas
RangeFormula
A2:G7A2=VSTACK(Branch1,Branch2)
Dynamic array formulas.
 
Upvote 0

Forum statistics

Threads
1,225,757
Messages
6,186,850
Members
453,379
Latest member
gabriellegonzalez

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