Consulting

Results 1 to 3 of 3

Thread: Solved: Data Validation

  1. #1

    Solved: Data Validation

    Hi all,

    Looking for ideas...

    I have a cell that has numeric data validation so only values between 0 and 2 are allowable.

    I would like to change that conditon to 0-1 base on the value of another cell.

    Ex

    If A1 = 1 I would like cell A2 numberic data validation to be 0-1

    all other values I would like it to be 0-2

    any ideas would be great

    thanks

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Use a DV type of custom and a formula of =OR(AND(A1=1,A2>=0,A2<=1),AND(A1<>1,A2>=0,A2<=2))
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    You make it all to easy

    thanks much

Posting Permissions

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