Skip to main content
Salesforce Bot (Endeavor) 님이 #Data Management에 질문했습니다
I have a checkbox formula that states:

 

NOT(CONTAINS(Company_Office__c, Owner_Office__c))

 

Which is great but I need to add an exception that says except when either the Company_Office__c or the Owner_Office__c contains the word "Global"

 

Ideas?
답변 1개
  1. 2016년 2월 3일 오전 12:00
    Hi Cory,

     

    Please try the below

    AND(

    NOT(CONTAINS(Company_Office__c, "Global")),

    NOT(CONTAINS(Owner_Office__c, "Global")),

    NOT(CONTAINS(Company_Office__c, Owner_Office__c))

    )

0/9000