Index Match Array

xMIKExSMITHx

New Member
Joined
Jul 11, 2014
Messages
45
1ABCDEFGHIJ
220172018201820182018Year2018
3EmployeeDecJanFebMarAprMonthFeb
4Doe John20.0022.0023.0024.0024.00EmployeeJones Mike
5Jones Mike15.0017.0018.0019.0019.00Rate???

<tbody>
</tbody>


I have the above table (B2:G5) in my sheet. I want my index match to locate the rate of $18.00 for the employee based on the criteria set in J2-J4. I know the index match has to be set as an array, but no matter how I adjust the formula, I can't seem to tweak it correctly. This is what I have so far...

={INDEX(B:G,MATCH(1,(J2=C:G)*(J3=C:G)*(J4=B:B),0))}
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
you don't really need to use index and match....assuming there aren't and duplicates you could use something like sumproduct to return the value which wouldn't require control shift enter

Unknown
ABCDEFGHI
120172018201820182018Year2018
2EmployeeDecJanFebMarAprMonthapr
3Doe John2022232424EmployeeJones Mike
4Jones Mike1517181919Rate19

<tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
I4=SUMPRODUCT((B1:F1=I1)*(B2:F2=I2)*(A3:A4=I3)*(B3:F4))

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
In J5 control+shift+enter, not just enter:

=VLOOKUP(J$4,$B$4:$G$5,MATCH(J$3,IF($B$2:$G$2=J$2,$B$3:$G$3),0),0)
 
Upvote 0

Forum statistics

Threads
1,215,374
Messages
6,124,571
Members
449,173
Latest member
Kon123

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top