Hello, how do I write a validation rule to make these two picklist field (Complaint reason & complaint level) required when a checkbox field (ACI Complaint) is true?
3 件の回答
Hi,
Try this:
AND(CheckboxFieldAPI,
OR(ISBLANK(TEXT(Complaint_Reason__c)),
ISBLANK(TEXT(Complaint_Level__c)))
)