Is it possible to combine spillover arrays in a formula?
Spillover arrays allow you to populate an entire column (or row) using a single formula at the start of the array. For example, suppose you have a table with the following
A B C D
1 alpha delta =VSTACK(A1:A3,B1:B3) =FILTER(C1#,C1#<>"epsilon")
2 beta epsilon
3 gamma zeta
The formula shown in C1, when run, would produce an array that spills over onto rows 2-6 listing the six greek characters. But, suppose you had filtering requirement so that you wanted to eliminate "epsilon". The formula in D1, when run, grabs the spill-over from the formula in C1 (using a "spill range operator", #) and produces an array that lists just five entries.
A B C D
1 alpha delta alpha alpha
2 beta epsilon beta beta
3 gamma zeta gamma gamma
4 delta delta
5 epsilon zeta
6 zeta
My question is, can you nest the spillover array produced by the VSTACK function directly inside the FILTER? It isn't obvious how you would format the filtering criteria. To illustrate, it would be nice to have some sort of "<VSTACK-spillover-operator>" so that I could code:
=FILTER( VSTACK(A1:A3,B1:B3), <VSTACK-spillover-operator> <> "epsilon")
Thanks!
iPad Air 3