PrettyGood_Not Great
Board Regular
- Joined
- Nov 24, 2023
- Messages
- 95
- Office Version
- 365
- Platform
- Windows
Hi, I have an equation that is indirectly pulling a row of data from multiple sheets, all having an identical structure.
REDUCE(0,C11,LAMBDA(a,b,INDIRECT("'"&b&"'!H$13:AU$13")))
This equation is being used on a sheet that is consolidating all other sheets into one data set. The equation spills to the right, however I'd like it to also spill down. C11 in this equation is the reference to a column that contains all the tab names. I have tried turning C11 into C11# as it is already a dynamic range it's self, however that returns a #REF.
I have also tried using VSTACK('Tab1:Tabx'!H$13:AU$13) and this works perfectly spilling in 2D, however I have to hard code the tab names and this is not acceptable. Is there a way to either A) turn the REDUCE/INDIRECT into a 2D spilled array or B) allow the VSTACK to reference cell values containing the tab names?
REDUCE(0,C11,LAMBDA(a,b,INDIRECT("'"&b&"'!H$13:AU$13")))
This equation is being used on a sheet that is consolidating all other sheets into one data set. The equation spills to the right, however I'd like it to also spill down. C11 in this equation is the reference to a column that contains all the tab names. I have tried turning C11 into C11# as it is already a dynamic range it's self, however that returns a #REF.
I have also tried using VSTACK('Tab1:Tabx'!H$13:AU$13) and this works perfectly spilling in 2D, however I have to hard code the tab names and this is not acceptable. Is there a way to either A) turn the REDUCE/INDIRECT into a 2D spilled array or B) allow the VSTACK to reference cell values containing the tab names?