3 Columns F:G:H, Match column 2 & 3 Return value from column 1

Dtex20

Board Regular
Joined
Jan 29, 2018
Messages
50
Hi guys,

I'm having a problem with this lookup, i can't use Vlookup because i'm using other formulas to split the name were there is a space.

I can't use index, match the way i know because there is nothing on the top row. It's just 3 columns.

So Column F:G:H.

I want to:

match D22 to Column G
match D23 to Column H
Return the value in Column F they're all on the same line.


So if G110 matched D22
H110 Matched D23
F110 Value would appear in the cell.

Thanks !
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
try

=IFERROR(IF(AND(MATCH(D22,G:G,0)=MATCH(D23,H:H,0)),INDEX(F:F,MATCH(D22,G:G,0)),""),"")
 
Upvote 0
try

=IFERROR(IF(AND(MATCH(D22,G:G,0)=MATCH(D23,H:H,0)),INDEX(F:F,MATCH(D22,G:G,0)),""),"")

Works Perfectly, a little bit of editing with sheet names but exactly what i wanted.

I would've never got that.

Thanks so much man!
 
Upvote 0

Forum statistics

Threads
1,215,459
Messages
6,124,947
Members
449,198
Latest member
MhammadishaqKhan

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