How to Make a Drop-Down List in Google Sheets
To make a drop-down list in Google Sheets, select the cells, open Data > Data validation, add a rule with the Dropdown criteria, and enter your options. Here is how to build, edit, and troubleshoot one.
Drop-down lists keep a sheet tidy by letting people pick from set options instead of typing (and mistyping) values. In Google Sheets they take about a minute to set up, and you can build one from a typed list or from a range of cells.
How to make a drop-down list
- Select the cell or cells where you want the drop-down.
- Open the Data menu and click Data validation, then Add rule.
- Under Criteria, choose Dropdown.
- Type each option and press Enter to add the next one. You can give each a color if you like.
- Click Done. Each cell now shows a chip you can click to pick an option.
Use a list from a range (easier to update)
Typing options is fine for short lists, but linking to a range is better when the list changes. Put your options in a column — say H1:H10 — then in the Data validation panel choose Dropdown (from a range) and set the range to:
=$H$1:$H$10
Now you can update the list just by editing those cells. If the source column might contain repeats, clean it first — see how to remove duplicates in Google Sheets — so each option appears only once.
Edit or remove a drop-down list
- To change the options: click the cell, then the chip's menu (or reopen Data > Data validation) and edit the rule.
- To remove it: open Data > Data validation, point to the rule, and click the trash icon (Remove rule).
- To reuse it: copy the cell and Paste special > Data validation only onto other cells.
Common drop-down problems
If invalid entries slip through, open the rule and set "If the data is invalid" to Reject the input instead of showing a warning. Doing the same task in Excel? See how to create a drop-down list in Excel.
Frequently asked questions
How do I add color to a drop-down list in Google Sheets?
When you add or edit the Dropdown options in Data validation, each option has a color picker next to it. Pick a color and the cell fills with it whenever that option is selected.
Can I make a dependent (conditional) drop-down list in Google Sheets?
Yes. A dependent list changes its options based on another cell — for example, choosing a country then showing only its cities. It uses helper ranges and formulas like INDIRECT or FILTER, and is a step up from a basic list.
Why won't my Google Sheets drop-down let me type other values?
The rule is set to reject anything outside the list. Open Data > Data validation, and under "If the data is invalid" switch from Reject the input to Show a warning, which allows other entries.