Multiple Criteria: IF 2x 2-Column Matches then show corresponding value in parallel row (two sheets)

idrisjones

New Member
Joined
Apr 25, 2019
Messages
11
Hi there,

I'm wanting to create a formula that retrieves a unique cell value if multiple criteria are met.

E.g. If 'Interface'!H8 matches item in 'ReferenceList'!ColumnT3:T245 & 'Interface'!I8 matches item in 'ReferenceList'ColumnU3:U245 then show corresponding value in 'ReferenceList'!ColumnV3:V245.

I've played with VLOOKUP, INDEX, MATCH, IF mainly, but gotten no where that I can apply it to all cells in Column J in 'Interface'.

Any idea's?

Cheers,
Idi
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
See if this does it

=INDEX(ReferenceList!V3:V245,MATCH(1,INDEX((ReferenceList!T3:T245=Interface!H8)*(ReferenceList!U3:U245=Interface!I8),0),0))
 
Upvote 0
Thank you for your help - This was near perfect!

The solution was

=INDEX('Reference List'!$V$3:$V$245,MATCH(1,('Reference List'!$T$3:$T$245=Table7[@[Category 1]])*('Reference List'!$U$3:$U$245=Table7[@[Category 2]]),0))
 
Upvote 0

Forum statistics

Threads
1,215,492
Messages
6,125,115
Members
449,206
Latest member
burgsrus

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