Skip to main content
I need to write a Validation Rule where a particular Contact Record Type selects a status of closed it can't close until 2 picklist fields have selections in them
1 个回答
  1. 2021年4月29日 08:02

    HI Renai,

     

    Try this:

    AND(RecordType.Name="Name of the record type here",

    TEXT(Status__c)="Closed",

    OR(NOT(ISBLANK(TEXT(Picklist1__c))),

    NOT(ISBLANK(TEXT(Picklist2__c)))))

0/9000