Skip to main content
1. In an opportunity , under the Financials section I have 2 fields:  Setup fee and Annual fee.

 

2. I want to lock these two fields until, Company information is filled. 

 

How do I got about doing this?

 

 
12 answers
  1. May 24, 2016, 6:23 PM
    Okay try this: 

     

     

    AND(

    ISBLANK(CompanyInformation__c)

    OR(

    NOT(ISBLANK(Setup_Fee__c)),

    NOT(ISBLANK(Annual_Fee__c)),

    ISCHANGED(Setup_Fee__c),

    ISCHANGED(Annual_Fee__c),

    )

    )

     

     
0/9000