How does one ADD to a dropdown list?

P

Paralegal

I created a dropdown list. I tried to add another item to the list, but the
list does not seem to want to include it. I've blocked the list, go into the
name field, use the same name, but it defaults to my original list and does
not include my additional rows/items.
 
P

Pete_UK

Did you create the drop-down using Data Validation? If so, select the
cell and click on Data | Validation | Settings tab. Under Allow: you
should have List, and then check that the Source box references your
amended data.

Hope this helps.

Pete
 
J

Jacob Skaria

If you want to add items dynamically to the drop down; try
Data>Validation>Allow List and then

If your current source is as below (starts from row2)
=$A$2:$A$4

change that to
=OFFSET(A2,0,0,COUNTA(A:A)-1)


If your list data starts from the 1st row like
=$A$1:$A$4

then change that to below
=OFFSET($A$1,0,0,COUNTA(A:A))

Now try adding items to your list data and those will be reflected in the
drop down

If this post helps click Yes
 
F

FatBytestard

I name an array, and then make a call to it in the standard validation
dialogs for the list selection.

Then, whenever one wants to add data to the drop down list, all one
needs do is insert a row *from within* the named array boundaries, and it
will auto-expand the named range, and hence, the drop down list.


If you want to add items dynamically to the drop down; try
Data>Validation>Allow List and then

snipped also 100% valid solution. :-]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top