I have two sheets:
Master sheet
Supporting sheet
I am trying to pull any names from column G in Master to column C in Supporting but only if the row meets the following requirements:
The values in columns H, I and J in Master match the cells A11, B10 and A4 in Supporting.
I only want it to pull the first instance of the name and then move onto the next one. I have copied this formula as an array into C11:C20 in Supporting:
=IFERROR(INDEX(Master!$G$3:$G$100, MATCH(0, COUNTIF($C$10:C10, Master!$G$3:$G$100) + IF((Master!$H$3:$H$100=$A11)*(Master!$I$3:$I$100=B$10)*(Master!$J$3:$J$100=$A$4), 1, 0), 0)), "")
Additionally, I want to take a similar approach for column F in Supporting, where the match requirement will change from:
Master!$I$3:$I$100=B$10 to Master!$I$3:$I$100=E$10
However it just keeps pulling the same names from column C.
Any advice would be more than welcome. I have been on this for days
Master sheet
Supporting sheet
I am trying to pull any names from column G in Master to column C in Supporting but only if the row meets the following requirements:
The values in columns H, I and J in Master match the cells A11, B10 and A4 in Supporting.
I only want it to pull the first instance of the name and then move onto the next one. I have copied this formula as an array into C11:C20 in Supporting:
=IFERROR(INDEX(Master!$G$3:$G$100, MATCH(0, COUNTIF($C$10:C10, Master!$G$3:$G$100) + IF((Master!$H$3:$H$100=$A11)*(Master!$I$3:$I$100=B$10)*(Master!$J$3:$J$100=$A$4), 1, 0), 0)), "")
Additionally, I want to take a similar approach for column F in Supporting, where the match requirement will change from:
Master!$I$3:$I$100=B$10 to Master!$I$3:$I$100=E$10
However it just keeps pulling the same names from column C.
Any advice would be more than welcome. I have been on this for days