I wish to use the following function in value field of Data validation
IF(A8=””,IF(A7=””,A6+1,A7+1),A8+1)
I wish to allow only just next number entry in the cell with regard to entry made in previous cells whichever has value first.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
I don’t believe that you can use a Nested IF in Data Validation since the first FALSE it encounters will trigger the Data Validation message, even if the overall IF statement eventually resolves to TRUE. So we need to use an simple IF function in the Data Validation wizard, one that only has a single logical_test.
This workaround will require a Helper Cell, e.g. A1
Let’s say the user-entry cell that you want to validate is A9. Put this formula in A1:
This will put a 1 or 0 in A1 if the conditions you asked for are met.
Now, select Data Validation…Custom for A9 and use this formula:
=A1=1
When the Nested IF in A1 resolves to 1, the Data Validation will be TRUE and the value will be allowed.
Let us know if that works for you.
Click Here Before Posting Data or VBA Code —> How To Post Data or Code.