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
Ken sfdc1Ken sfdc1 

check the validation not working

AND ( RecordTypeId = '012E0000000NA5Q' , ISPICKVAL ( Type__c, "CCM")ISBLANK(Ship_Date__c),OR((ISPICKVAL(Outcome__c, "Patient Scheduled Delivery"), ISPICKVAL(Outcome__c,"Transferred to Pharmacy"))

Error is Syntax error. Missing ')'
Best Answer chosen by Ken sfdc1
ManojjenaManojjena
Hi Ken,

Try with below formula ,
 
AND(RecordTypeId = '012E0000000NA5Q',ISPICKVAL ( Type__c, "CCM"),OR((ISPICKVAL(Outcome__c, "Patient Scheduled Delivery"), ISPICKVAL(Outcome__c,"Transferred to Pharmacy"))))

LEt me know if it helps .