VLOOKUP, MATCH, INDEX, OFFSET

rinnue

Board Regular
Joined
Feb 28, 2003
Messages
142
I have a table, PRICETABLE, it consists of 3 columns. We shall say A, B and C. I need to search column B for the reference and then return the data in the adjacent cell in column A. I'm to the point now where the more I mess around with these functions the more confused I'm getting. I thought for sure VLOOKUP with OFFSET would do it. But I can't figure it out.
I've read alot about searching the first column on the left and then returning data from other columns but not searching a middle column.

I need help Please?
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Using the name PRICETABLE...

=INDEX(PRICETABLE,MATCH(LookupValue,INDEX(PRICETABLE,0,2),0),1)

Using ranges...

=INDEX($A$2:$A$100,MATCH(LookupValue,$B$2:$B$100,0))
 
Upvote 0
Works like a charm. I was back and forth between the lot of them( Index, Match, Lookup, Offset) for about 5hrs. I wanted to figure it out on my own but EVENTUALLY I decided that I killed enough time. It is so nice to get help.

THANKS
 
Upvote 0

Forum statistics

Threads
1,226,120
Messages
6,189,082
Members
453,524
Latest member
AshJames

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