Reliable Data Validation

Written by Allen Wyatt (last updated February 14, 2026)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365


1

Tomek has two cells, B3 and B4, both of which have data validation applied to them. In cell B3, data validation requires a whole number between 1 and 5. In cell B4, data validation requires a whole number between 6 and 10. If Tomek selects the range B3:B4, types 3, and presses Ctrl+Enter, then both cells end up with 3 in them. This, despite the data validation rule in cell B4. Excel only pays attention to the data validation rule, if any, in the first cell in the selected range. Tomek wonders if there is a way to enforce data validation on individual cells in a selection so this doesn't happen.

The short answer is that there are several loopholes (for lack of a better term) where data validation doesn't work. Tomek has identified one such loophole—the entry of values into a range of cells using Ctrl+Enter. Since that is the specific condition about which Tomek is asking, there is a relatively easy macro-based approach that can be employed. The following macro can be added to the worksheet's code:

Private Sub Worksheet_Change(ByVal Target As Range)
    Dim c As Range

    Application.EnableEvents = False
    For Each c In Target
        If Not c.Validation Is Nothing Then
            On Error Resume Next
            If c.Validation.Type <> 0 Then
                If Not c.Validation.Value Then
                    MsgBox "Invalid entry in cell " & _
                      c.Address(False, False), vbExclamation
                    c.ClearContents
                End If
            End If
            On Error GoTo 0
        End If
    Next c
    Application.EnableEvents = True
End Sub

Every time a change is made in the worksheet, the macro runs, checking each cell that is selected. If the cell has a data validation rule set, then it is checked. If the rule fails, then the user is notified and the next cell is checked.

Notice that the macro will work with any changes done in the worksheet; it doesn't matter where they are done. It is possible to modify the macro to only check if the change was in the range B3:B4, but I suspect that the example range was just for example, not for limitation of where edits are expected.

There are three obvious drawbacks to using an approach such as this. The first has already been implied: The macro doesn't deal with all potential data validation loopholes, such as pasting a value to overwrite data validation rules. The second drawback is that using the user won't be able to use Ctrl+Z to undo edits. And, of course, the third drawback is that the workbook must be macro enabled.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12240) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Adding Ampersands to Custom Dictionaries

It appears that Word doesn't allow you to define custom dictionary entries that include ampersands. There are ways you ...

Discover More

Resizing a Text Box in a Macro

Text boxes are easy to add to a document and manually resize, as needed. If you want to resize the text box in a macro, ...

Discover More

Can't Copy Data between Workbooks

Edit a group of workbooks at the same time and you probably will find yourself trying to copy information from one of ...

Discover More

Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!

More ExcelTips (ribbon)

Specifying a Data Validation Error Message

Data validation is a great tool for limiting what can be input into a cell. Excel allows you to specify what should ...

Discover More

Limiting Entry of Prior Dates

Want to establish a "bottom limit" on what dates can be entered in a cell? This tip presents two different ways you can ...

Discover More

Setting Data Validation Input Messages

When using data validation, you might want to have Excel display a message when someone starts to enter information into ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is three minus 0?

2026-02-14 20:44:30

Tomek

Thank you, Allen, for replying to my request.
The macro you proposed works well and does exactly what I wanted. Moreover, the first loophole you mentioned (pasting values into validated cells) is actually handled correctly. This is important for me as I often paste the data from another workbook, which is extracting the game score results from social media, where participants share them with the group. If I mis-align the pasted data, they will almost certainly break validation rules, and your macro will let me know.
It even works when the cell's or cells' value is changed by a macro, which standard validation does not check.

You are correct that I have large areas of validated data, not just two cells, but modifying the macro to check all the validated cells when only a few cells were changed would be inefficient. However, I can easily modify your macro to check all validated cells and run it on demand, say before archiving a full month of data.

Thanks again.


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.