I am attempting to utilize the VSTACK and FILTER functions to return entire rows of data from multiple tabs into a single array based on names populated in either of two specific columns (D & E) on each tab; the result returns an error. The VSTACK function alone returns a stacked array, so I figure that the error is on the FILTER side. I’ve tried the following equation:
=LET(v,VSTACK(SchoolA!A1:I300,SchoolB!A1:I300,SchoolC!A1:I300),((FILTER(v,INDEX(v,,A1:A300)<>""))*(FILTER(v,INDEX(v,,D1:E300)=B1))))
Where:
Blank lines are to be removed by checking Column A
Lookup values are to be found by checking Columns D and E
Lookup value is located in Cell B1
Any help is greatly appreciated.
=LET(v,VSTACK(SchoolA!A1:I300,SchoolB!A1:I300,SchoolC!A1:I300),((FILTER(v,INDEX(v,,A1:A300)<>""))*(FILTER(v,INDEX(v,,D1:E300)=B1))))
Where:
Blank lines are to be removed by checking Column A
Lookup values are to be found by checking Columns D and E
Lookup value is located in Cell B1
Any help is greatly appreciated.