Quick Method: Type the List Directly
- Select the cell or range where the dropdown should appear.
- Go to Data →Data Validation.
- Choose List under Allow.
- In Source, type items separated by commas:
Open,Closed,Pending. - Click OK.
This is fast for short lists, but it becomes hard to maintain if the list changes often or appears in multiple sheets.
Better Method: Use a Range as the Source
Place the allowed values in a column, for example Lists!A2:A20. Then select the input cells, open Data Validation, choose List, and set Source to =Lists!$A$2:$A$20. This makes the dropdown easier to update because you edit the list values in one place.
Best Method: Use a Named Range
Named ranges make validation formulas easier to understand. Select the list values, click the Name Box to the left of the formula bar, type a name like StatusList, and press Enter. Then use =StatusList as the data validation source.
Dynamic Drop Down List
If you use Excel 365 or Excel 2021, put the list in an Excel Table. Table ranges expand automatically when you add new values. You can also use dynamic array formulas such as =SORT(UNIQUE(A2:A1000)) to generate a clean list from raw data, then point the dropdown at the spill range.
Common Drop Down Problems
- The dropdown arrow does not show: click the cell first. Excel only shows the arrow when the validated cell is active.
- New list items are missing: your source range is too short. Use a Table or expand the range.
- Users can type anything: check the Error Alert tab and make sure invalid data is blocked.
- The list source is on another workbook: keep validation lists inside the same workbook for reliability.
- Duplicates appear: create the list with UNIQUE before using it as the dropdown source.
Drop Downs Are Also an Error Prevention Tool
Most spreadsheet errors do not begin as formula mistakes. They begin as inconsistent entries: "NY", "New York", "newyork", and "New York ". Drop down lists reduce that variation. They are especially useful for status, region, department, category, account type, and approval fields.