Named Ranges and Dynamic Formulas

J

Josh O.

I have a number of tabs with the same Name Range on each tab.

I want reference the named ranges using a value in a cell in another
worksheet (same workbook).

Example:
Summary Tab - A2 = "01", B2 = '01'!NamedRange
Summary Tab - A3 = "02", B3 = '02'!NamedRange

Except I would like to use a formula that inserts the value from column A to
reference that Tab to pull the range from.

Something like: = ' & A2 & '!NamedRange

Is that possible?
 
J

Josh O.

Never mind. I figured it out.

Enter the Sheet name before the name.
Names in workbook: Sheet1!NamedRange1
Refers to: =Sheet1!$A$2
 
J

Josh O.

Never mind the never mind...I meant this for another post.

Still looking to see if this is possible.
 
J

Josh O.

Got it.

I was trying =Indirect("'"&A2&"'!"NamedRange).

Made it =Indirect("'"&A2&"'!NamedRange"), it worked.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top