Mulitple index and match

yorkam

New Member
Joined
Jun 12, 2014
Messages
9
Any help would be much appreciated as I have a questions which I am trying to pill through data from one sheet onto another.

I have a list of job roles in rows, with a criteria in columns in my data sheet.. in my summary sheet based on a filter I would like to pull the information through.

As example
Job accountant with condition of grade b which is in the drop.down filter so answer should be 1200

In the data I have
Job role grade a grade b
Accountant 1000 1200
Finance mgr 1400 1500

Trying to use index and match but constantly get an #n/a
=index(data range,match(Job role,job role data range,0),match(grade in the filter box,grade header row,0))

Any help from thr group would be appreciated.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
=index(data range,match(Job role,job role data range,0),match(grade in the filter box,grade header row,0))
should work
=INDEX(B2:C3,MATCH(E2,A2:A3,0),MATCH(F2,B1:C1,0))

Book19
ABCDEFG
1Grade AGrade B
2Accountant10001200accountantgrade b1200
3Finance mgr14001500
4
Sheet1
Cell Formulas
RangeFormula
G2G2=INDEX(B2:C3,MATCH(E2,A2:A3,0),MATCH(F2,B1:C1,0))
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

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