Forum Discussion
kite21
Sep 06, 2023Copper Contributor
Append rows from multiple sheets into new sheet without using Power Query?
Suppose I have a workbook with 2 sheets that both have exactly the same columns. Is it possible to append all the rows from the 2 sheets into a 3rd sheet using a formula rather than Power Query? I wo...
- Sep 06, 2023
kite21 If you have Excel365 you can use the VSTACK function. See image below.
=VSTACK(Table1[#All],Table2)
Imagine the tables are each in their own sheet, then you can enter the formula shown in H2 in a third sheet.
Riny_van_Eekelen
Sep 06, 2023Platinum Contributor
kite21 If you have Excel365 you can use the VSTACK function. See image below.
=VSTACK(Table1[#All],Table2)
Imagine the tables are each in their own sheet, then you can enter the formula shown in H2 in a third sheet.
- kite21Sep 08, 2023Copper ContributorThank you, Riny_van_Eekelen. This was what I needed.