Skip to main content
Hi Everyone,

 

I am trying to figure out how to make an account mandatory when an opportunity hit 40% or more probability that it will close. Any suggestions or ideas would be greatly appreciated!

 

Thank you!

 

Jordan 
9 answers
  1. May 16, 2015, 6:14 PM

    Try this:

    AND(

    Probability >= 0.4,

    OR (

    INCLUDES(Account.Insurance_Carrrier__c , "Unknown"),

    ISBLANK(Account.Insurance_Carrrier__c)

    )

    )

     

     
0/9000