pmcmicha
Technical User
- May 25, 2000
- 353
I am attempting to reduce the amount of maintenance on a worksheet by making certain columns dynamic in regards to their named range. Then I wish to reference this from a couple of lists.
Dynamic Named Range: TEST
** This will find the last text entry in that column, so I do not have to update the named range constantly.
List Box 1: (CELL: Sheet1!C2)
List Box 2: (CELL: Sheet1!D2)
If I use the Dynamic Named Range, then List Box 2 does not work, but if the Named Range is set manually, then this setup works just fine. Troubleshooting:
1) Removed INDIRECT from Dynamic Named Range, no effect. Readded.
2) Removed INDIRECT from List Box 2, no effect. Readded.
3) Removed both INDIRECT's, no effect.
Is there a workaround for this problem? Thanks in advance.
Dynamic Named Range: TEST
Code:
=INDIRECT("DATA!$A$2:$A"&ROW(OFFSET(DATA!$A$2,COUNTA(DATA!$A$2:$A$50)-1,0)))
List Box 1: (CELL: Sheet1!C2)
Code:
="NOTHING","SOMETHING","TEST"
List Box 2: (CELL: Sheet1!D2)
Code:
=INDIRECT("TEST_"&$C$2)
If I use the Dynamic Named Range, then List Box 2 does not work, but if the Named Range is set manually, then this setup works just fine. Troubleshooting:
1) Removed INDIRECT from Dynamic Named Range, no effect. Readded.
2) Removed INDIRECT from List Box 2, no effect. Readded.
3) Removed both INDIRECT's, no effect.
Is there a workaround for this problem? Thanks in advance.