function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
kjunkjun 

how to modify validation rule with checkbox and picklist

I have a check box, Validate__c, that should not be true if the lender__c picklist value = Homes. 

Can someone help me with the format of the validation rule? 
Best Answer chosen by kjun
Ajay K DubediAjay K Dubedi
Hi Kjun,

I went through your question and came up with a solution. Please try the below validation rule.
 
AND( ISPICKVAL( lender__c , "Homes" ), Validation__c = TRUE ) 

I hope you find the above solution helpful. If it does, please mark as Best Answer to help others too.

Thanks and Regards,
Ajay Dubedi
www.ajaydubedi.com