I am requesting if someone could help me with a Validation Rule. When the value "Settled" is in the formual (text) Deal_Disposition_Reason__c field, a user will not be able to select the RELP_Sale__c checkbox field.
Is it possible to create a Validation Rule for this requirement?
6 answers
I created the error message below.
Everything is working good now, the record is able to save using the VR below.
AND(
Deal_Disposition_Reason__c = "Settled",
RELP_Sale__c = TRUE
)
Thank You