Skip to main content
Anthony Okoro (First American) 님이 #Formulas에 질문했습니다

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일 오후 4:26

    Hi,

     

    Try this:

    AND(CheckboxFieldAPI,

    OR(ISBLANK(TEXT(Complaint_Reason__c)),

    ISBLANK(TEXT(Complaint_Level__c)))

    )

0/9000