If all you want to do is grab a subset of an array, and you already know the positions of the elements you want, you can just use INDEX
with an array for the index argument. That is:
=INDEX({11,22,33,44,55},{2,3,5})
returns {22,33,55}
. But that's usually not very useful because you don't know the positions, and I don't know any way to get them without a UDF.
What I have done for this kind of in-worksheet array filtration is to write a UDF with the following form:
'Filters an input sequence based on a second "comb" sequence.
'Non-False-equivalent, non-error values in the comb represent the positions of elements
'to be kept.
Public Function combSeq(seqToComb, seqOfCombValues)
'various library calls to work with 1xn or nx1 arrays or ranges as well as 1-D arrays
'iterate the "comb" and collect positions of keeper elements
'create a new array of the right length and copy in the keeper elements
End Function
I only posted pseudocode because my actual code is all calls to library functions, including the collect-positions and copy-from-positions operations. It would probably obscure the basic idea, which is pretty simple.
You'd call such a UDF like so:
=combSeq({23, "", 34, 46, "", "16"}, {23, "", 34, 46, "", "16"} <> "")
or
=combSeq(Q1:Q42, SIN(Z1:Z42) > 0.5)
and use Excel's normal array mechanics to generate the "comb". It's a lightweight, Excel-friendly way to get a lot of the benefits of the more standard filter(list-to-filter, test-function)
function you might see in other programming systems.
I use the name "comb" because "filter" usually means "filter with this function", and with Excel you have to apply the test function before calling the filtration function. Also it can be useful to compute one "comb" as an intermediate result and then use it to...er, comb...multiple lists.