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
Ben Kingsley 8Ben Kingsley 8 

Issues with Validation Rule with Multi Select Picklist

Hey Guys,
I'm having issues with this validation rule not recognizing a value in the Multiselect Picklist (Reason2__c). Can someone please help me.  

AND(OR(
$RecordType.DeveloperName="Loan",
$RecordType.DeveloperName="Loan_Wealth_Management",
$RecordType.DeveloperName="Loan_Financial_Institutions",
$RecordType.DeveloperName="SME_Lending",
AND(ISPICKVAL(Disposition__c, "Declined By Bank"),(ISBLANK(Reason2__c)))
))
Raj VakatiRaj Vakati
For me its Validation  looks good .. but try this
 
AND(OR(
$RecordType.DeveloperName="Loan",
$RecordType.DeveloperName="Loan_Wealth_Management",
$RecordType.DeveloperName="Loan_Financial_Institutions",
$RecordType.DeveloperName="SME_Lending",
AND(ISPICKVAL(Disposition__c, "Declined By Bank"),(ISBLANK(TEXT(Reason2__c))))
))