work around for array formula in numbers
I have an excel array formula that I am trying to replicate in numbers.
I have a table of data that contains various revenue types.
I want to return only those items that are marked as "membership" revenue on a new sheet
the formula i have is
index(L$2:L$150,small(if(Q$2:Q$150="Membership",Row(L$2:L$150)-Row(L$2)+1),Row(L 1)))
when I put this is an array and copy it then it skips the rows that don't relate to membership.
In numbers the formula works in the first cell but I can't copy it so that it returns only the membership data.