+ Reply to Thread
Results 1 to 17 of 17

Data validation bug?

  1. #1
    Registered User
    Join Date
    11-30-2010
    Location
    Vancouver, Canada
    MS-Off Ver
    Excel 2007
    Posts
    4

    Data validation bug?

    I have a simple data validation formula to check whether a valid number is entered or not. It works, provided that the user types the number, then presses either the ENTER or TAB key.

    If they type a number, then click another cell using the mouse, the number will be accepted, with apparently no data validation check kicking in. In other words, it will accept an invalid number.

    I have style STOP selected, I have IGNORE BLANK clicked on (though I don't think that even applies here).

    Am I missing something really obvious here?
    Last edited by swaugh; 12-03-2010 at 03:32 PM.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Data validation bug?

    Must be a bug in your system, that doesn't work for me. You might want to verify that behavior in other workbooks. Post one here that lets you do that.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    11-30-2010
    Location
    Vancouver, Canada
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Data validation bug? - here's the spreadsheet

    Here's the workbook in question. Please look at the April2011 tab, cell Z17 - it has the data validation - it should not allow entry of a number - if you enter anumber then hit TAB or ENTER - you'll see the data validation message.
    If you enter the number then immediately click in another adjacent cell, the number will be entered with no data validation.
    Help please, and thanks for the response so far
    Susan
    Attached Files Attached Files

  4. #4
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Data validation bug?

    Try changing formula to:

    =$B$44>0
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  5. #5
    Registered User
    Join Date
    11-30-2010
    Location
    Vancouver, Canada
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Data validation bug?

    Thanks, but I'm specifically checking for a <0 value in $B$44 - in other words, they can't take hours they don't have in the "bank" (represented by value in cell B44). The issue isn't the formula, it works just fine - the issue is it only works if you press enter or tab, but not if you immediately click in another cell.

  6. #6
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: Data validation bug?

    The issue actually is your formula because the value in B44 is not less than 0, it is 0.
    Changing your formula to:

    Please Login or Register  to view this content.
    solves the problem without defeating your intent.

    But why wouldn't you be using:

    Please Login or Register  to view this content.
    Wouldn't that be a better way to do it?
    Last edited by Cutter; 12-01-2010 at 08:24 PM.

  7. #7
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Data validation bug?

    My formula:

    =$B$44>0, which is theoretically the same as your =IF($B$44<=0,FALSE,TRUE)

    It will not allow entry in Z17 unless B44>0

    With data validation and conditional formatting, you should write the functions so that the result is TRUE if the condition is met. There is no need for an IF() formula... the result of B44>0 is TRUE or FALSE by default.

  8. #8
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Data validation bug?

    It's a bug in Excel. (it's not 2007 specific as I've heard of it before and it still occurs in 2010) I can't think of a way round it offhand due to the circular nature of the validation.
    Everyone who confuses correlation and causation ends up dead.

  9. #9
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Data validation bug?

    When I applied the formula as =$B$44>0, it seemed to work, at least I think it did

  10. #10
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Data validation bug?

    Not for me. If you type a number in Z17 (without pressing enter or tab) and then select another cell with the mouse, it bypasses the validation completely. (the original formula wasn't the problem - it works fine if you use enter or tab)

  11. #11
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Data validation bug?

    You're right. I tested it again, but my suggestion was a little different...

    =$B$44>0 removes the (=0 condition, which I assume should also disqualify the entry)... and with that it works as desired. It's has to do with the =0 part not triggering when B44 actually equals 0, it seems.

  12. #12
    Registered User
    Join Date
    11-30-2010
    Location
    Vancouver, Canada
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Data validation bug?

    Thanks everybody for the responses - the issue truly isn't the formula (and a value of 0 is ok, it is only a <0 value that isn't), it's getting the formula to trigger when another cell is clicked, rather than using the enter or tab key after a value is entered. I think we'll just make sure instructions are clear to use enter or tab only.

  13. #13
    Registered User
    Join Date
    04-05-2013
    Location
    Greenville, SC
    MS-Off Ver
    Excel 2007/2010
    Posts
    3

    Re: Data validation bug?

    I realize this thread is over 2 years old at this point, but curious if anyone found a solution to the problem. I'm seeing the same thing in Excel 2007 and 2010 and would love to find a solution without having to add even more code to my Workbook_Change() event.

  14. #14
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Data validation bug?

    I still have no workaround other than the ws_change event. Sorry.

  15. #15
    Registered User
    Join Date
    06-10-2011
    Location
    Tartu, Estonia
    MS-Off Ver
    Excel 2000
    Posts
    7

    Re: Data validation bug?

    Excel2000 doesn't have this bug, so it is a later 'improvement' from MS. I discovered this bug just today when applied data validation in Excel2007. The validation formula is like:
    =COUNTIF($G:$G;$G2)<2


    Arvi Laanemets

  16. #16
    Registered User
    Join Date
    03-13-2013
    Location
    Brisbane, Australia
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Data validation bug?

    Hi,
    I am attempting to workaround this error. I just wonder Jerry what you have in mind with the ws_change event.

    In my case, I am using a user defined function via an Indirect cell reference to validate that a cell contains only characters from a defined alphabet. Everything works perfectly when the cell input is valid. (It doesn't matter whether I leave the cell with the enter key, arrow key or mouse click on another cell.) When the cell input is invalid, the ws_change event certainly picks up the new contents of the cell and data validation fires properly - UNLESS I leave the error cell by clicking on another cell. Then, the inccorrect data is accepted as if no validation is applied to the cell.

  17. #17
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: Data validation bug?

    leo black,

    Unfortunately you need to post your question in a new thread, it's against the forum rules to post a question in the thread of another user. If you create your own thread, any advice will be tailored to your situation so you should include a description of what you've done and are trying to do. Also, if you feel that this thread is particularly relevant to what you are trying to do, you can surely include a link to it in your new thread.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1