How to Remove Drop Down List in Excel (Every Method, 2026)
A drop down list, also written drop-down list and sometimes called a drop down menu, a dropdown menu, or simply a dropdown, exists to control data entry by limiting what users can type into a cell. There comes a point when that little arrow gets in the way. Maybe you inherited an Excel workbook full of data validation rules you no longer need, or a column is now meant for free text instead of fixed options. Whatever the reason, learning how to remove drop down list in Excel takes only a few clicks once you know where to look in Microsoft Excel.
The fastest way to remove a drop-down list is to select the cell, open the Data tab, and click Data Validation to open the data validation dialog box. On the Settings tab, click the Clear All button, then press OK, and the arrow disappears immediately. The text already sitting in the cell stays exactly where it is, so you can clear the rule without losing your data. The same data validation window is where you select data validation options when you create a list, which is why removing one feels familiar.
If the same drop-down appears across multiple cells, select all of those cells before you open the dialog box. Click the first cell, hold Ctrl, and click each additional cell, or drag across a continuous range to grab them in one motion. To cover multiple columns or multiple rows, drag across the whole block, or click a column header to select an entire column. The Clear All button then strips the rule from all the cells in the selected range at once, which is far quicker than fixing specific cells one by one. The same logic that powers these menus is what lets you add a drop-down list in Excel in the first place, so the two tasks live in the same place on the ribbon.

For situations where you also want to wipe the values, formatting, and the rule together, Excel offers a separate shortcut on the Home tab. Both routes are covered below, alongside a keyboard method, a way to find hidden validation settings, and a macro for large files. If you regularly clear cell contents across big ranges, some of these techniques will feel familiar.
Method 1: Data Tab and Clear All (the quickest route)
This is the cleanest option because it removes only the validation rule and leaves your typed values intact.
- Select the cell or range that contains the drop-down list.
-
Go to the Data tab on the ribbon.
-
Click Data Validation in the Data Tools group.
-
On the Settings tab, click Clear All.
- Click OK.
The drop-down arrow vanishes as soon as you confirm. Clearing the data validation settings this way affects only the active worksheet, so other sheets keep their rules. If you selected several cells that held different kinds of data validation rules, Excel may ask whether you want to apply the change to all of them. Choose Yes to clear every rule in the selection.

Method 2: Home Tab Clear Menu (removes everything at once)
Use this when you want the cell wiped completely, meaning the values, the formatting, and the drop-down rule all go together.
- Select the cell or range.
-
On the Home tab, find the Editing group on the far right.
-
Click the Clear button (the eraser icon).
- Choose Clear All.
After you click Clear and choose Clear All, Excel resets the selected cells back to blank, so reach for this only when you genuinely want a fresh start. A right click on the cell does not offer a remove-validation option, so the ribbon is the route to use. If you want to keep your text and remove only the rule, Method 1 is the safer choice.

Method 3: Keyboard Shortcut for the Data Validation Dialog
Anyone who lives in spreadsheets all day can skip the mouse entirely. The legacy shortcut sequence still opens the Data Validation dialog in current versions of Excel:
- Select the cell or range.
-
Press Alt, then A, then V, then V in sequence (not all at once).
- When the dialog opens, click Clear All, then press Enter.
This works because the Alt key activates the ribbon shortcuts, and the A leads into the Data tab. It feels awkward the first time, but it becomes muscle memory fast.

Method 4: Find Hidden Drop-Down Lists with Go To Special
Sometimes a workbook has drop-downs scattered around, and nobody remembers where. Excel can locate every cell that carries a validation rule for you.
-
Press Ctrl + G to open the Go To dialog, then click Special.
-
Select Data validation, then choose All to highlight every validated cell, or Same to match cells that share the rule of the active cell.
- Click OK. Excel selects all of the matching cells.
- With those cells selected, open Data > Data Validation > Clear All and confirm.
This pairs perfectly with Method 1 and is the reliable way to scrub validation from a sheet when the cells are spread out.
Method 5: Remove Drop-Down Lists from an Entire Worksheet
To clear validation from the whole sheet in one pass:
-
Click the Select All triangle in the top-left corner where the row and column headers meet, or press Ctrl + A.
-
Go to Data > Data Validation.
- Click Clear All, choose Yes if prompted about multiple rule types, and press OK.
Every drop-down on the Excel worksheet is gone after this, so use it deliberately on sheets you are certain about.
Method 6: Remove a Drop-Down List with a Macro (VBA)
For workbooks with hundreds of sheets or rules, a short macro saves a lot of clicking. Open the editor with Alt + F11, insert a module, and paste one of the snippets below.
To clear validation from a specific range:
Sub RemoveDropDownFromRange()
Range("B2:B100").Validation.Delete
End Sub
Sub RemoveDropDownFromRange()
Range("B2:B100").Validation.Delete
End Sub
Sub RemoveDropDownFromRange()
Range("B2:B100").Validation.Delete()
End Sub
To clear validation from the entire active sheet:
Sub RemoveAllDropDowns()
Cells.Validation.Delete
End Sub
Sub RemoveAllDropDowns()
Cells.Validation.Delete
End Sub
Sub RemoveAllDropDowns()
Cells.Validation.Delete()
End Sub
Run the macro with F5 or assign it to a button. The Validation.Delete line removes the rule while leaving the cell values in place, the same outcome as Clear All on the Data tab.
Common Issues and Troubleshooting
Even after the steps above, a few common scenarios can leave you puzzled. Here are the ones that come up most often when removing validation from a spreadsheet.
The drop-down arrow still appears after clearing. You likely cleared the rule from a different cell than the one showing the arrow. Click directly on the cell with the visible arrow and run Method 1 again. If several cells look identical, use Go To Special (Method 4) to be sure you catch them all.
Clear All is greyed out or does nothing. This usually means the worksheet is protected. Go to Review tab, click Unprotect Sheet, enter the password if one was set, and then remove the drop-down. Re-protect the sheet afterward if you still need it locked.
The drop-down comes back after you paste data. Copying a cell carries its validation rule along with its value. When you paste over a cleaned cell, the rule can return. To avoid this, use Paste Special and choose Values so only the content transfers and the validation stays gone.
The cells belong to an Excel Table. Table columns can automatically apply a drop-down to every row, including new ones. Clearing one cell will not stop the column from re-applying the rule. Select the full column inside the table and run Clear All, or convert the table back to a normal range first.
You want to keep the list but change the options. Removal is the wrong tool here. Reopen Data Validation, stay on the Settings tab, and edit the Source box instead of clicking Clear All. That swaps the items without deleting the drop-down.
The list source is a named range. When the drop-down list based its options on a named range, the rule points to a name defined in the Name Manager. Clearing the validation removes the dropdown list, though the named range itself stays in the Name Manager until you delete it under Formulas > Name Manager.
Merged cells behave oddly. Unmerge any merged cells first, then remove the validation. A rule left on a hidden part of a merge can keep the arrow visible after you think you cleared it.
Conditional formatting and pivot tables stay put. Removing a drop-down does not affect conditional formatting, so any color rules on the selected values remain. If the cell is fed a pivot table, refresh the pivot table so it reflects the new data.
The list used a formula source. When the options came from the following formula in the Source box, such as an OFFSET or INDIRECT function, removing the validation also stops those functions from feeding the cell. Add a new column with plain options if you later want the list back without the functions.
You want to remove items, not the whole list. To delete a drop-down without losing it entirely, reopen Data Validation and edit the Source box to remove items, rather than using Clear All to delete drop-down rules outright.
You are on a Mac. On Excel for Mac, the process matches closely. Open the Data tab, choose Data Validation, and clear the rule on a specific worksheet the same way.
For Developers: Removing Drop-Down Lists Programmatically
Manual cleanup works fine for a handful of files, but it falls apart when an application generates thousands of spreadsheets a month, perhaps for client intake forms or scheduled audits. In .NET, you can remove validation rules in code with IronXL, a C# Excel library that reads and edits XLSX and XLS files without needing Microsoft Office or Interop installed on the machine.
The DataValidations collection on each worksheet holds every validation rule, including drop-down lists, and supports removing them directly:
using IronXL;
// Load the workbook that contains the drop-down list
WorkBook workbook = WorkBook.Load("inventory.xlsx");
WorkSheet worksheet = workbook.DefaultWorkSheet;
// Remove the data validation (drop-down list) applied to a range
worksheet.DataValidations.RemoveDataValidation("B2:B100");
// Save the cleaned file
workbook.SaveAs("inventory-cleaned.xlsx");
using IronXL;
// Load the workbook that contains the drop-down list
WorkBook workbook = WorkBook.Load("inventory.xlsx");
WorkSheet worksheet = workbook.DefaultWorkSheet;
// Remove the data validation (drop-down list) applied to a range
worksheet.DataValidations.RemoveDataValidation("B2:B100");
// Save the cleaned file
workbook.SaveAs("inventory-cleaned.xlsx");
Imports IronXL
' Load the workbook that contains the drop-down list
Dim workbook As WorkBook = WorkBook.Load("inventory.xlsx")
Dim worksheet As WorkSheet = workbook.DefaultWorkSheet
' Remove the data validation (drop-down list) applied to a range
worksheet.DataValidations.RemoveDataValidation("B2:B100")
' Save the cleaned file
workbook.SaveAs("inventory-cleaned.xlsx")
Loading the file, targeting the range that holds the rule, and saving the result gives you a clean spreadsheet with the values preserved and the drop-down gone. The example above runs as one short process, and the same collection lets you read existing rules or create new ones, so a single routine can standardize validation across an entire batch of files. Note that the values stay intact, the same as the manual Clear All result.
To explore how IronXL handles drop-down lists, data validation, and the rest of your spreadsheet automation in C# and VB.NET, visit the IronXL documentation page.




