I am hoping to create a two dimensional matrix with a the indirect funciton in excel using something like this:
=INDIRECT(A12:A14 & "!C3:C11")
The idea is, if you have A12:A14 holding worksheet names, with C3:C11 in each of those worksheets holding some data, you can easily gather this into a matrix for processing within another worksheet using this simple function.
After this, you could use =MMULT() or other functions with arrays like B12:B14, for example to do a matrix multiplication:
=MMULT(B12:B14*INDIRECT(A12:A14 & "!C3:C11")
Is there a simple way to do this that I am missing? For instance rearraging it with parenthesis or placing a SUM somewhere?