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

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
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,214,950
Messages
6,122,428
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