Index Match Multiple Criteria - Two Tabs

elizabethCat

New Member
Joined
Jan 25, 2019
Messages
1
I am trying to do an index match. I want to match the Vendor ID and Max Manual Date in the Audit tab to the corresponding row in the Quality tab to get the Manual Rating and then to match the Vendor ID and Max of EtQ Audit Date to get the EtQ Rating. None of my formulas work. Can someone point me in the right direction? I'm tried several formulas on-line and I'm getting nowhere. Thank you!

Audit Tab
Vendor
ID

<tbody>
</tbody>
Max Manual Audit DateMax of EtQ Audit Date
Manual
Rating

<tbody>
</tbody>
EtQ
Rating

<tbody>
</tbody>
2900000909
2018-06-01

<tbody>
</tbody>
2016-06-01

<tbody>
</tbody>

<tbody>
</tbody>


Quality Tab
Vendor IDManual DateEtQ DateManual RatingEtQ Rating
2900000909
2018-06-01

<tbody>
</tbody>
2016-06-01

<tbody>
</tbody>
2

<tbody>
</tbody>
0

<tbody>
</tbody>
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
try this


Book1
ABCDE
1Audit Tab
2VendorMax Manual Audit DateMax of EtQ Audit DateManualEtQ
3IDRatingRating
4290000090901/06/201801/06/201633
5
6
7
8Quality Tab
9Vendor IDManual DateEtQ DateManual RatingEtQ Rating
10290000090901/05/201801/05/201821
11290000090901/06/201801/05/201832
12290000090901/06/201801/06/201643
Sheet2
Cell Formulas
RangeFormula
D4{=INDEX($D$10:$D$12,MATCH(A4&"|"&B4,$A$10:$A$12&"|"&$B$10:$B$12,0))}
E4{=INDEX($E$10:$E$12,MATCH(A4&"|"&C4,$A$10:$A$12&"|"&$C$10:$C$12,0))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
Hi Elizabeth
The only way I can think of is to put an "index" column on the left of your table and have CONCATENATE(the vendor id,the date) as the index, you can hide this to make it more appealing. Then match on the index.
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,436
Members
449,083
Latest member
Ava19

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