Forum Discussion
Judith95
Apr 30, 2020Copper Contributor
Index return multiple value with multiple criteria
Hello, I would need help with a formula I can't make it work and can't find help online. I'm trying to return multiple values with multiple criteria (3). Ideally I would like the data separat...
SergeiBaklan
Apr 30, 2020Diamond Contributor
As variant of above, regular (non-array) formula with dynamic ranges is
=IFERROR(
INDEX($D:$D,
AGGREGATE(15,6,1/
($A$1:INDEX(A:A,COUNTA(A:A)+1)=$G$2)/
($B$1:INDEX(B:B,COUNTA(A:A)+1)=$H$2)/
($C$1:INDEX(C:C,COUNTA(A:A)+1)=$I$2)*
ROW($A$1:INDEX(A:A,COUNTA(A:A)+1)),
ROW()-ROW($J$10)
)
),
"")