I am trying to reference an array that represents a subset of data in a formula. For example, lets say I have a spreadsheet with the following 3 named ranges:
[TABLE="width: 162, align: center"]
<COLGROUP><COL style="WIDTH: 54pt" span=3 width=72><TBODY>[TR]
[TD="width: 72, bgcolor: transparent, align: center"]MyRng1[/TD]
[TD="width: 72, bgcolor: transparent, align: center"]MyRng2[/TD]
[TD="width: 72, bgcolor: transparent, align: center"]MyRng3[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]A[/TD]
[TD="bgcolor: transparent, align: center"]2.58[/TD]
[TD="bgcolor: transparent, align: center"]Z[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]A[/TD]
[TD="bgcolor: transparent, align: center"]3.16[/TD]
[TD="bgcolor: transparent, align: center"]Z[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]B[/TD]
[TD="bgcolor: transparent, align: center"]1.19[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]A[/TD]
[TD="bgcolor: transparent, align: center"]2.45[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]D[/TD]
[TD="bgcolor: transparent, align: center"]3.1[/TD]
[TD="bgcolor: transparent, align: center"]Z[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]D[/TD]
[TD="bgcolor: transparent, align: center"]0.98[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]C[/TD]
[TD="bgcolor: transparent, align: center"]7.52[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]B[/TD]
[TD="bgcolor: transparent, align: center"]4.44[/TD]
[TD="bgcolor: transparent, align: center"]Z[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]D[/TD]
[TD="bgcolor: transparent, align: center"]3.27[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]C[/TD]
[TD="bgcolor: transparent, align: center"]2.61[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]C[/TD]
[TD="bgcolor: transparent, align: center"]3.88[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
</TBODY>[/TABLE]
And let's say I wanted to feed the subset of all D's that are also Y's into the MIN() formula:
[TABLE="class: grid, width: 379, align: center"]
<TBODY>[TR]
[TD][/TD]
[TD]Result Array</SPAN>[/TD]
[TD][/TD]
[/TR]
[TR]
[TD="align: center"]D</SPAN>[/TD]
[TD="align: center"]0.98</SPAN>[/TD]
[TD="align: center"] Y</SPAN>[/TD]
[/TR]
[TR]
[TD="align: center"]D</SPAN>[/TD]
[TD="align: center"]3.27</SPAN>[/TD]
[TD="align: center"] Y</SPAN>[/TD]
[/TR]
</TBODY><COLGROUP><COL span=2><COL><COL span=2></COLGROUP>[/TABLE]
How do I generate the result array so that it can be input into the MIN() formula?
Thanks!
[TABLE="width: 162, align: center"]
<COLGROUP><COL style="WIDTH: 54pt" span=3 width=72><TBODY>[TR]
[TD="width: 72, bgcolor: transparent, align: center"]MyRng1[/TD]
[TD="width: 72, bgcolor: transparent, align: center"]MyRng2[/TD]
[TD="width: 72, bgcolor: transparent, align: center"]MyRng3[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]A[/TD]
[TD="bgcolor: transparent, align: center"]2.58[/TD]
[TD="bgcolor: transparent, align: center"]Z[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]A[/TD]
[TD="bgcolor: transparent, align: center"]3.16[/TD]
[TD="bgcolor: transparent, align: center"]Z[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]B[/TD]
[TD="bgcolor: transparent, align: center"]1.19[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]A[/TD]
[TD="bgcolor: transparent, align: center"]2.45[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]D[/TD]
[TD="bgcolor: transparent, align: center"]3.1[/TD]
[TD="bgcolor: transparent, align: center"]Z[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]D[/TD]
[TD="bgcolor: transparent, align: center"]0.98[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]C[/TD]
[TD="bgcolor: transparent, align: center"]7.52[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]B[/TD]
[TD="bgcolor: transparent, align: center"]4.44[/TD]
[TD="bgcolor: transparent, align: center"]Z[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]D[/TD]
[TD="bgcolor: transparent, align: center"]3.27[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]C[/TD]
[TD="bgcolor: transparent, align: center"]2.61[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent, align: center"]C[/TD]
[TD="bgcolor: transparent, align: center"]3.88[/TD]
[TD="bgcolor: transparent, align: center"]Y[/TD]
[/TR]
</TBODY>[/TABLE]
And let's say I wanted to feed the subset of all D's that are also Y's into the MIN() formula:
[TABLE="class: grid, width: 379, align: center"]
<TBODY>[TR]
[TD][/TD]
[TD]Result Array</SPAN>[/TD]
[TD][/TD]
[/TR]
[TR]
[TD="align: center"]D</SPAN>[/TD]
[TD="align: center"]0.98</SPAN>[/TD]
[TD="align: center"] Y</SPAN>[/TD]
[/TR]
[TR]
[TD="align: center"]D</SPAN>[/TD]
[TD="align: center"]3.27</SPAN>[/TD]
[TD="align: center"] Y</SPAN>[/TD]
[/TR]
</TBODY><COLGROUP><COL span=2><COL><COL span=2></COLGROUP>[/TABLE]
How do I generate the result array so that it can be input into the MIN() formula?
Thanks!