You need to sign in to do that
Don't have an account?
Synthia B.
Validation Rule -Yes or No
Before a task can be saved the user must choose Yes or No. I have no errors but I am still able to save the task with out choosing Yes or No. What am I missing?
AND(
No__c = TRUE,
OR(
Yes__c = TRUE
)
)
AND(
No__c = TRUE,
OR(
Yes__c = TRUE
)
)
Use :
AND(
No__c = False,
Yes__c = False
)
Thanks,
Rajendra
All Answers
Use :
AND(
No__c = False,
Yes__c = False
)
Thanks,
Rajendra