Skip to main content
I have a custom object name loans__c and a formula text field name Deal_Disposition_Reason__c and a checkbox field name RELP_Sale__c .

 

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
  1. Sep 12, 2014, 12:50 PM
    I created the error message below. 

     

    I created the error message below. Everything is working good now, the record is able to save using the VR 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
0/9000