Forum Discussion
Phishdawg
Apr 05, 2023Brass Contributor
Moving Items from Sheet to Sheet
I am in receipt of an Excel workbook with ten sheets that each have more than 50,000 lines of data. I have made a tables of all data on each sheet. The client wants all data on one sheet (for o...
Patrick2788
Apr 07, 2023Silver Contributor
You've got a circular reference. You'll want to pull the 'header' from any of the sheets but not from the sheet with the formula.
Phishdawg
Apr 07, 2023Brass Contributor
Remove headers from all sheets except sheet 1.
Do I need to edit the formula? If yes, how, what should be changed or removed from formula?
Do I need to edit the formula? If yes, how, what should be changed or removed from formula?
- Patrick2788Apr 07, 2023Silver Contributor
=LET( header, Sheet!A1:R1, stack, VSTACK(Sheet4:Sheet6!A2:R60000), filtered, FILTER(stack, TAKE(stack, , 1) <> ""), VSTACK(header, filtered) )- PhishdawgApr 07, 2023Brass Contributor
Patrick2788
Edit -
Got it! The second line was missing a number for the sheet.
*******************************************************************
How do I edit the formula so that the heading doesn't repeat.- Patrick2788Apr 07, 2023Silver ContributorUpdated above*