Index & Match Help (I think….)

FuriousD

New Member
Joined
Sep 1, 2016
Messages
35
Office Version
  1. 365
Platform
  1. MacOS
Looking for some help, think I need to use a multiple criteria Index & Match. I've done it before but can't get it to work this time. Below is some dummy data

ABCDE
Req IDJob TitleRegionCandidate NameStart Date
1234Jobby JobNEAC Slater1/2/2018
1234Jobby JobSWZach Morris
1234Jobby JobMWKelly Kapowski

<tbody>
</tbody>

So above I have 3 candidates on 1 req. I want to pull into a summary page the candidate name who has been offered.

I tried [FONT=&quot]=INDEX(Report!D1:D4,MATCH[/FONT][FONT=&quot](Report![/FONT][FONT=&quot]A1&E1,[/FONT][FONT=&quot]Report!A1:A4&Report!E1:E4,0[/FONT][FONT=&quot])[/FONT]) but I'm getting 0 as a result. Any thoughts?
Something better than I&M (no vba please, I'm In HR).


TIA
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
If you will only have 1 date in E...
A​
B​
C​
D​
E​
F​
G​
1​
Req IDJob TitleRegionCandidate NameStart Date
2​
1234Jobby JobNEAC Slater1/2/2018AC Slater
3​
1234Jobby JobSWZach Morris
4​
1234Jobby JobMWKelly Kapowski
G2=INDEX($D$2:$D$4,MATCH(MAX($E$2:$E$4),$E$2:$E$4,90))
 
Upvote 0
Thanks for the help. A couple of things...

1. How do you factor in column A (there are like ~200 different reqs with multiple candidates on most?). I think I need it to also factor req number (column A) in.
2. What does the 90 denote in your formula?
 
Upvote 0
1. ooops missed that you needed to test the Req...
A​
B​
C​
D​
E​
F​
G​
1​
Req IDJob TitleRegionCandidate NameStart Date
1234​
2​
1234Jobby JobNEAC Slater1/2/2018Zach Morris
3​
1234Jobby JobSWZach Morris
4​
1235Jobby JobMWKelly Kapowski1/2/2018
G2=INDEX($D$2:$D$4,MATCH(G1&" "&MAX($E$2:$E$4),INDEX($A$2:$A$4&" "&$E$2:$E$4,0)))

2. he 90 was a typo, meant it to be 0 (see above)
 
Upvote 0

Forum statistics

Threads
1,215,377
Messages
6,124,598
Members
449,174
Latest member
chandan4057

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