VLOOKUP using NEGATIVE column ref #?

DMP3

New Member
Joined
Aug 11, 2010
Messages
11
I am trying to look up a value in a table that is found in a column that is LEFT of the referenced table but as we all know this does not work and returns #N/A.
=VLOOKUP(D3,'sheet2'!B:M,-12,FALSE)
So in other words I want to look up the value in D3 (which = text "ITU") in a table found in sheet 2 and that value (ITU) would be found in column M of sheet 2. Then I want it to return the corresponding value found in column B of sheet 2 in the row of the column where "ITU" is found (column M of sheet 2).
Hope I explained that well... thanks for your help
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Welcome to the board...

Yep, Vlookup is Zoolander Challenged. It can't turn left...

You have to use Index/Match

Try

=INDEX('Sheet2'!B:B,MATCH(D3,'Sheet2'!$M:$M,0))

Hope that helps.
 
Upvote 0

Forum statistics

Threads
1,215,455
Messages
6,124,937
Members
449,196
Latest member
Maxkapoor

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