Forum Discussion
Cruxy123
Dec 20, 2023Copper Contributor
Adding data to a drop down list
I have attempted to add data to a previously set up drop down list associated with a cell, I am unable to add another item?
- NikolinoDEGold Contributor
To add additional items to a drop-down list in Excel, you need to modify the source of the list.
Here is a step-by-step guide on how to add new items:
- Select the cell with the drop-down list: Click on the cell where you have the drop-down list.
- Go to the "Data" tab: In the Excel ribbon, navigate to the "Data" tab.
- Click on "Data Validation": In the "Data Tools" group, you will find "Data Validation." Click on it.
- Go to the "Settings" tab: In the "Settings" tab of the "Data Validation" dialog box, you will find the "Allow" drop-down list. Choose "List."
- Modify the source: In the "Source" field, you will see the range of cells that currently make up your drop-down list. Edit this range to include the new item you want to add.
For example, if your current range is Sheet1!$A$1:$A$5, and you want to add a new item in cell A6, change the range to Sheet1!$A$1:$A$6.
6. Click "OK":
After modifying the source, click "OK" to apply the changes.
Now, your drop-down list should include the newly added item.
If you are using a named range for your drop-down list, you can also modify the named range to include the new item. To do this, go to the "Formulas" tab, click on "Name Manager," find and edit the named range associated with your drop-down list.
Remember, if your drop-down list is based on a table or a dynamic range, you might need to adjust the table or range definition to include the new item.
After making these changes, you should be able to see and select the newly added item in your drop-down list.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and like it!
This will help all forum participants.
- Rodrigo_Steel Contributor
Cruxy123
When adding a data for you drop down list, you also need to update your SOURCE on Data Validation Criteria. See the image belowIf you do not want to edit your Data Validation Source, I have 2 suggestions method for ya'.
- Using OFFSET and COUNTA Functions
- Select the cell where you want to put the drop-down list.
- Go to the Data tab >> Data Validation group >> Data Validation.
- In the Data Validation dialog box, select List from different options under Allow.
- Type the following formula in the Source box: =OFFSET($A$2,0,0,COUNTA(A:A)-1).
- Here, $A$2 is the starting cell of the range, the following 2 zeros are indicating that the cell reference will not move by any row or column number. Finally, COUNTA(A:A)-1 is indicating the height number of the range which will be the number of rows having texts or numbers.
- Defining Name for a Range and Creating Table
- Select the source range.
- Click the tab “Formula” in the ribbon.
- Click the button “Define Name” in the toolbar.
- Input a name into the “Name” Text Box.
- Input the range into the “Refers to” text box.
- Click a cell within the source range.
- Click the tab “Insert” in the ribbon.
- Click the button “Table” in the toolbar
Here's the source/reference: 2 Methods to Auto Refresh the Drop-Down List in Your Excel Worksheet
- Using OFFSET and COUNTA Functions