Skip to main content
Hello, 

 

May I please get your help in writing this Workflow Formula: 

 

I have a Custom Object called Receipt. On this Receipt object I have 2 Check Box fields. 

 

Is Posted 

 

Is Refund 

 

There is also a look up field called Business Group' which looks up the Business Group object. 

 

I am trying to write a formula in a Workflow that should send an email alert if: 

 

Is Posted is True 

 

Is Refund is false 

 

and Business Group 's Name Field  contains the word Foundation. 

 

 
3 answers
  1. Aug 8, 2020, 4:41 PM
    Hi Minhaj_Developer Arifin,

     

    You can try something like this:

     

     

    AND(

    Is_Posted__c,

    Is_Refund__c,

    CONTAINS( Business_Group__r.Name , "Foundation")

     

    Hope that helps.

     

    Regards,

     

    Jayson​​​​​​​

     

     
0/9000