Skip to main content

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 件の回答
  1. 2022年8月25日 16:26

    Hi,

     

    Try this:

    AND(CheckboxFieldAPI,

    OR(ISBLANK(TEXT(Complaint_Reason__c)),

    ISBLANK(TEXT(Complaint_Level__c)))

    )

0/9000