I am trying to use INDEX MATCH to return a value based on multiple criteria. Someone has helped me get to a point but I cannot find a way to add additional criteria. The formula I am working from at the minute is:
=IFERROR(INDEX(DATA!$H$2:$H$2000,SMALL(IF(DATA!$K$2:$K$2000="Yes",ROW(DATA!$A$2:$A$2000)-ROW(DATA!$A$2)+1,""),ROWS(DATA!$A$2:A2))),"")
This returns a person's name from my list of data based on the answer to a criteria being "YES".
I need to add two more criteria to return fewer results. This will be based on a month and year, both displayed numerically in different cells, i.e. 10
and 2015
. I only want to return my index list when the other values in the row are "YES", 10
and 2015
.