Delete a Drop down data valition list in Excel
A drop down list in Excel also has another term "Data valiation list". These drop down lists usually has a list of predefined values that can be chosen without typing. In casem you would like to remove this from a cell, you can try one of these 2 methods:1. Copy paste to remove drop down list
This is a tricky & easy method.- Select a empty cell.
- Copy the cell (Ctrl + C).
- select drop down list cell.
- Paste (Ctrl + V).
2. Direct Method to delete a Drop down list
In this method, you have to do the reverse of adding drop down data valiation list. Lets see how to do this.- Select drop down list cell
- Click on Menu -> Data -> Data validation
- Choose "Any value" instead of "List"
- Click ok.
3. How to remove a drop down list using VBA in Excel?
Whether it is range of cell or a single cell, you can always use Range.validation.delete within the code. To know how to properly use this inside a VBA code, open this page & get the code. More references- Learn more on how to remove a drop downlist from this Microsoft page.