Forum Discussion
AmberGI
Aug 04, 2023Copper Contributor
Google Sheets vs Excel
I have a workbook that has 5 sheets. On page 6, I want the data from the first 5 sheets to appear and filter in alphabetical order. In google sheets this is the formula =SORT({'Page 1'!A8:AV; 'Page ...
Patrick2788
Aug 04, 2023Silver Contributor
You'll have to use a function capable of accepting a 3D reference. SORT will not accept a 3D reference but VSTACK will.
For example:
Stack 3 sheets, pull blanks rows, and then sort.
=LET(
Stack, VSTACK(Sheet1:Sheet3!A1:F100),
filtered, FILTER(Stack, TAKE(Stack, , 1) <> ""),
SORT(filtered)
)