Forum Discussion
WakandaTech1993
Jun 11, 2019Copper Contributor
Index Match with multiple criteria
Greetings, I'm working in Excel 2013, and I'm using an Index Match Function with multiple criteria. The function should allow me pull in a Task based on: 1. Team Member 2. Date 3. Task Number ...
SergeiBaklan
Jun 13, 2019Diamond Contributor
It could be
=IFERROR(INDEX($D:$D,MATCH(1,INDEX(($A:$A=$H$2)*($B:$B=$M$2)*($C:$C=G$3),0),0)),"no such")
and I guess you shall use column C instead of column D as in your formulas, at least for the sample file. Plus, at least for the tasks, you have no match names: "Task1" and "Task 1"; "Task 3" and "Task 3 "
Result is in G6:I6 attached.