vlookup using table references

Burnsieboy

New Member
Joined
Aug 19, 2016
Messages
16
Morning all,

I am trying to make my sheet more robust by changing my usual vlookup
=IF($B9>0,VLOOKUP($B9,Full_list_Data,2,FALSE),"")

to something more like
=IF($B9>0,VLOOKUP($B9,Table1[Project Name],Table1,0),0)

the "Full_List_Data" or "Table1" data table is on another sheet and the table is B:CZ

I want to be able to rearrange the columns in the data table without affecting the existing column lookup numbers in the formulas on the other worksheets - there are lots
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Hi

If I understand correctly you want to find the $B9 value in the first column of Table1 and return the corresponding value in the [Project Name] column.
Is this correct?
If this is correct seems it's much simpler with index(match()).
Please confirm.
 
Upvote 0
In that case I'd use:

=INDEX(Table1[Project Name],MATCH($B8,INDEX(Table1,0,1),0))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,867
Members
449,053
Latest member
Mesh

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