You need to sign in to do that
Don't have an account?

Validation Rule Question
Hey All-
I'm trying to create a validation rule that says the following:
If a check box field "z" is checked(true), then date field "x" and date field "y" cannot have any value entered into them. Please let me know if any of those requirements need clarification. Thanks.
Try this
AND(( z__c = true ),
OR(NOT(ISBLANK(x__c )), NOT(ISBLANK(y__c ))))
All Answers
Try this
AND(( z__c = true ),
OR(NOT(ISBLANK(x__c )), NOT(ISBLANK(y__c ))))
Thanks, BA. That worked!