How to Cancel Data Validation in Excel

Cody Schneider8 min read

Data validation is a fantastic Excel feature for keeping your spreadsheets clean and consistent, but sometimes it gets in the way. Whether you've inherited a workbook with tricky rules or your data needs have changed, knowing how to remove those restrictions is essential. This guide will walk you through exactly how to find and cancel data validation rules in any Excel sheet, step-by-step.

GraphedGraphed

Build AI Agents for Marketing

Build virtual employees that run your go to market. Connect your data sources, deploy autonomous agents, and grow your company.

Watch Graphed demo video

What is Data Validation in Excel (And Why Remove It?)

At its core, data validation is a set of rules you apply to a cell or range of cells to control what type of data can be entered. It’s the gatekeeper of your spreadsheet, ensuring accuracy and consistency. For example, you might use it to:

  • Create a dropdown list of options (e.g., 'Sales,' 'Marketing,' 'Engineering').
  • Restrict entries in a 'Quantity' column to whole numbers only.
  • Ensure a date entry falls within a specific range.
  • Limit text entries to a certain character length.

This is incredibly useful when building templates or shared files, as it minimizes user error. However, there are many valid reasons you'd want to get rid of it:

  • Inherited Spreadsheets: You received a file from a colleague, and its rigid validation rules prevent you from entering the data you need.
  • Changing Requirements: The project has evolved. The original dropdown list of 'Pending' and 'Complete' now needs a new 'In Progress' status, and it's easier to remove the rule and start fresh.
  • Data Cleanup: You're cleaning a messy dataset and the validation rules are flagging valid entries as errors, making your job harder.
  • Flexibility: The rules are simply too restrictive for a one-off task, and you need the freedom to enter any value you want.

Whatever your reason, removing data validation is a straightforward process once you know where to look.

Free PDF · the crash course

AI Agents for Marketing Crash Course

Learn how to deploy AI marketing agents across your go-to-market — the best tools, prompts, and workflows to turn your data into autonomous execution without writing code.

First, How to Find All Cells with Data Validation

Before you can remove a rule, you have to find it. Sometimes the rules aren't obvious, especially in a large, complex workbook. A cell might not have a dropdown arrow but could still have a hidden rule, like limiting a number to a certain value. Instead of clicking on every cell to check, you can use Excel's "Go To Special" feature to instantly highlight every cell with a validation rule.

Step-by-Step Guide to Finding Validation Rules:

  1. Open the Go To Special Dialog: On the Home tab of the Excel ribbon, find the Editing group (usually on the far right). Click the Find & Select dropdown menu and choose Go To Special... Pro Tip: You can also use the keyboard shortcut F5 to open the "Go To" box and then click the "Special..." button.
  2. Select Data Validation: In the Go To Special window that appears, you’ll see a list of options. Select the radio button next to Data Validation.
  3. Find All Rules: Below the Data Validation option, you'll see two more choices: All and Same. For now, make sure All is selected to find every single cell on the current worksheet that has any type of validation rule applied.
  4. Click OK: Excel will automatically select and highlight every cell that contains a data validation rule. Now you have a clear map of where all the rules are living in your sheet.

From here, you can investigate the highlighted cells to see what rules are applied or proceed directly to clearing them.

How to Clear Data Validation from Specific Cells

Once you’ve identified the cells with the unwanted rules, you can remove the validation in just a few clicks. This method is perfect when you only need to clear rules from a specific column, row, or small group of cells.

Step-by-Step Instructions:

  1. Select the Target Cells: Using your mouse, click and drag to select the cell or range of cells from which you want to remove data validation. You can select a single cell, an entire column (by clicking the column letter), an entire row (by clicking the row number), or a custom range of cells. To select non-adjacent cells (e.g., A5, B10, and C15), hold down the Ctrl key (or Cmd on Mac) while clicking on each cell.
  2. Open the Data Validation Window: Navigate to the Data tab on the ribbon. In the Data Tools group, click the Data Validation button. This will open the Data Validation settings window for your selection.
  3. Clear the Rules: The window will open to the Settings tab. In the bottom-left corner, you will see a button labeled Clear All. Click this button.
  4. Confirm Your Action: Click OK to close the window and apply the change. The data validation rule is now gone from your selected cells.

You'll notice that any dropdown arrows have disappeared, and you are now free to enter any value into the previously restricted cells. It's important to remember that this action only removes the rule, any pre-existing data that was entered according to the rule will remain in the cells until you manually change it.

GraphedGraphed

Build AI Agents for Marketing

Build virtual employees that run your go to market. Connect your data sources, deploy autonomous agents, and grow your company.

Watch Graphed demo video

How to Remove All Data Validation from an Entire Worksheet

Sometimes you need to clear the slate completely. If you're working with a template or a shared file plagued with numerous, unnecessary rules, you can remove them all at once. This saves you from having to hunt down and clear each rule individually.

Step-by-Step Universal Clear:

  1. Select a Cell with a Rule: First, you still need to find at least one cell that contains a validation rule using the "Go To Special" method described earlier.
  2. Open Data Validation: Go to the Data tab > Data Tools > Data Validation.
  3. Enable the Change for All Cells: Inside the Settings tab of the Data Validation window, you will see a small checkbox that says "Apply these changes to all other cells with the same settings." Check this box.
  4. Clear and Confirm: Click the Clear All button, and then click OK. Excel will find every cell that uses the exact same validation rule as your selected cell and will remove the rule from all of them simultaneously.

For a more brute-force approach to remove every single rule regardless of its settings:

  1. Select the Entire Worksheet: Click the small triangle button at the very top-left corner of the grid, where the column and row headings meet. This selects every cell in the sheet in one click. You can also press Ctrl + A (or Cmd + A on Mac).
  2. Open Data Validation and Clear: Go to the Data tab > Data Tools and click Data Validation. A prompt may appear saying, "The selection contains more than one type of validation." This is completely normal since you've selected the whole sheet. Click Yes to proceed.
  3. Click Clear All: In the settings window, click Clear All and then click OK. Every data validation rule on the entire worksheet will now be removed.

Quick Tip for Power Users: Remove Validation with a VBA Macro

If you're constantly cleaning up workbooks and want an even faster way to get the job done, a simple VBA (Visual Basic for Applications) macro can remove all validation from a worksheet or a selection with one click.

To use this, you'll need to open the VBA editor by pressing Alt + F11 on your keyboard. Then, go to Insert > Module to open a new code window. Paste one of the following code snippets into the window.

To Clear Validation from the Entire Active Sheet:

Sub ClearAllValidation()
    'Deletes all data validation on the currently active worksheet
    ActiveSheet.Cells.Validation.Delete
End Sub

To Clear Validation from Your Current Selection:

Sub ClearSelectedValidation()
    'Deletes data validation from the selected cells only
    Selection.Validation.Delete
End Sub

After pasting the code, you can close the VBA editor. To run the macro, press Alt + F8, select the macro name (e.g., ClearAllValidation), and click Run. Make sure to save a backup of your file before running any macros for the first time.

Free PDF · the crash course

AI Agents for Marketing Crash Course

Learn how to deploy AI marketing agents across your go-to-market — the best tools, prompts, and workflows to turn your data into autonomous execution without writing code.

Troubleshooting Common Problems

Sometimes things don't go as planned. Here are a couple of common issues you might run into:

  • The Data Validation Button is Grayed Out: If the button is unclickable, it almost always means the worksheet is protected. Go to the Review tab and click Unprotect Sheet. You may need a password if one was set.
  • I Cleared the Rule, but Old Values are Still there: This is expected behavior. Clearing data validation removes the rules for future entries, not the content that is already in the cells. You will need to delete or retype the cell contents manually.
  • Circular References Error: A cell that has data validation and a formula that points back to that same cell may behave unexpectedly. If clearing validation still gives you issues, search for and remove any circular references using Formulas > Error Checking > Circular References.

Final Thoughts

Mastering data validation - both applying it and removing it - gives you complete control over your Excel workbooks. Whether you're decluttering an inherited file, updating old templates, or preparing data for analysis, knowing how to quickly cancel validation rules allows you to work without unnecessary restrictions, making your data management tasks faster and far less frustrating.

Many businesses find themselves spending hours fighting with unruly spreadsheets, exporting CSVs, and manually wrangling data across different platforms - all because getting simple answers is too difficult. We created Graphed to solve this by automating your entire data reporting process. Instead of downloading and cleaning data in Excel, you can connect your scattered data sources (like Google Analytics, Shopify, and your CRM) in one click and build real-time, interactive dashboards just by asking questions in plain English - no formulas, pivot tables, or macros required.

Related Articles