1

I have a named range called "items" spanning 3 cols and 10 rows. In another worksheet I have a cell that uses a data validation list to allow a user to select from a drop down. In the source I want to specify the first column of the named "item" range. Is this possible?

2 Answers 2

9

Set your validation range formula to

=INDEX(items,0,1) 

Though is your named range called "item" or "items".... I've assumed "items"

Sign up to request clarification or add additional context in comments.

Comments

0

To add to that if your "items" named range is a table - using index(items,0,1) will not work.

You will have to create a new named range called "itemsFix" or something similar and "itemsFix" should refer to "items". Then using

=index(itemsFix,0,1) 

will work.

Making your named range a table is very useful. Every time you add new data to the bottom of that table, the named range will automatically update. If it isn't a table, the named range will never update by itself.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.