chronotonFlux

New Member
Joined
Dec 18, 2017
Messages
8
How wold I go about implementing a VLOOKUP that takes it's array range from a cell value?

For Example.

A1 = Sheet1
B1 = '[C:\Documents\File1.xls]Sheet1'
A2 = Sheet 2
B2 = '[C:\Documents\File1.xls]Sheet2'
A3 = Sheet 3
B3 = '[C:\Documents\File1.xls]Sheet3'

Instead of hardcoding:
D1 =VLOOKUP(C1, '[C:\Documents\File1.xls]Sheet1'$A$1:$F$90, 2)

to return a value, is it possible to replace the whole path/array address with a cell reference related lookup?

something along the lines of:
D1 = VLOOKUP(C1, A2 $A$1:$F$90,2)

I am trying to set up command that will read certain information from a file, but the file being read from changes based on a list selection.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
What about:

D1 = VLOOKUP(C1,INDIRECT(A2&"$A$1:$F$90",2)
 
Upvote 0

Forum statistics

Threads
1,216,211
Messages
6,129,528
Members
449,515
Latest member
lukaderanged

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