I am using Excel 2010 and I am trying to make a non-continuous list to be used in a drop down box. To my knowledge, the only way to do this is to create a name in the name manager and use the indirect function. I have two examples, the first one works, the second one does not. Is there any particular reason the second example does not work? Thank you in advance.
This example works:
=INDIRECT({"r12c2","r14c3","r15c2"},FALSE)
This example does not work:
=INDIRECT({"r12c"&(1+1),"r14c3","r15c2"},FALSE)
I have also tried using concatenate() in place of the ampersand (&) and it also does not work. Concatenating text within the indirect function is pretty normal, so I do not see why this does not work.
This is not the actual code I want to use, only a simplified example of the problem.
Bookmarks