Formula to reference named range

Texastek76

New Member
Joined
Feb 27, 2003
Messages
3
I have ~100 named ranges in a spreadsheet to reference daily production for oil wells. One data set is named AH717H for example. Typically I use a vlookup or Index Match like this: VLOOKUP(A2,AH717H,3,false) where A2 is a date. Pulling down this data for all ~100 wells which each have several hundred days of production makes the data set very large and the spreadsheet gets very big, very quick. Instead of using Vlookup for every well I'd like to be able to select a well from a list which could then cross-reference to the named range for that well.

For example - In cell A1 I'd pick the well Arroqhead 717H from a list. It would return a corresponding value in cell A2 of AH717H which is the correct named range. In another cell using Vlookup I would point to cell A2 to get the correct named range to refer to. Is that possible?
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
You could use INDIRECT.

=VLOOKUP(A2, INDIRECT(A2), 3, 0
 
Upvote 0
You could setup a table of Wells & their named ranges & use a Vlookup in A2 to return the named range & then use
=VLOOKUP(A3,INDIRECT(A2),3,FALSE)
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,621
Messages
6,120,568
Members
448,972
Latest member
Shantanu2024

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