Formula Based Data Validation 4 Date To Be Inserted

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to put a data entry validation check for allowing a Account Maturity
date in B2 less than Now() only if the account balance in D2 is 0, otherwise
with a balance in the account a date only after Now() should be allowed.

Any suggestions & advices shall be highly obliged.

Thanx
 
Use a custom formula of

=OR(AND(B2<TODAY(),D2=0),AND(B2>=TODAY(),D2<>0))

and uncheck the Ignore blank checkbox.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top