Forum Discussion
Named Manager that is not a Named Range
- inZAHNeOct 02, 2022Copper Contributor
ecovonrein, Unfortunately INDIRECT("myList#") does not work. As I understood it, @ refers to the first item of the range, array, or named item; and # refers to the entire range. If I use the =myList in A1, I can do INDIRECT("A1#") and it will work since it referencing a range. If I just do INDIRECT("A1") or @myList, it will just give me 1. However, the idea of named ranges (manager) is to use natural language concept; I want the name to be meaningful, but at the same time I don't want loaded in the sheet if I don't need to display it. I even tried =myList# and it gives me errors, since myList is not a range, due to the fact that ranges work with INDIRECT. I am guessing myList is an array (without a range reference), since it works with SUMPRODUCT that uses array as parameters. FYI, @{1,2,3,4} = 1, but @myList# does not work.