Indirect formula issue

StuartWhi

Board Regular
Joined
Sep 1, 2011
Messages
75
Hi Guru’s,

Need to your help in making an address reference within an “indirect” formula to be referencing a cell not text (I guess).
I have the following,
A list selector in B4 which is pointing to Name references “Flist” and “Slist” (H2:H3)
A list option which uses an Indirect formula to references the list selector in B4 so the user can select from the Name References i.e. 1 to 5 or a to e
This works without any issues as it’s a cell reference B4.

The problem is I need the Indirect to be a formula not a directly inputted cell reference and I’m using,
=Indirect(Address(4,2,4)) ‘*Simplified original formula can be seen in this post*'
When above is placed in a cell or in a Data Validation it returns what is written in Cell B4 “Flist” not the option of selecting from the Name References list.

See below for more details.
Excel 2010
ABCDEFGH
1
2Flist
3Slist
4List SelectFlist=INDIRECT(H2:H3) 'in Data Validation***'
5List Option1=INDIRECT(B4) 'in Data Validation***'Flist
61
72
8Indirect3=INDIRECT(B4)3
9AddressB4=ADDRESS(4,2,4)4
10Indirect + AddressFlist=INDIRECT(ADDRESS(4,2,4))5
11Data Validation Flist=INDIRECT(ADDRESS(4,2,4)) 'in Data Validation***'
12
13Slist
14a
15b
16c
17d
18e

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet4



Thanks for your assistance in advance,

Stuart.
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Hi Stuart

If I understand correctly, you want 2 levels of indirection

=INDIRECT(ADDRESS(4,2,4))

Gives you what is in cell B4: the string "FList"

=INDIRECT(INDIRECT(ADDRESS(4,2,4)))

will in a second step point to the named range with name "Flist".

Please try.
 
Upvote 0
Thanks PGC,

So simple that I should have seen it, I’m sure you saved me several more days of wasted time.

Stuart.
 
Upvote 0

Forum statistics

Threads
1,216,434
Messages
6,130,609
Members
449,584
Latest member
c_clark

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