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 answer
  1. Apr 29, 2021, 8:02 AM

    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