Skip to main content The new Salesforce certifications experience is live! Visit Trailhead Academy to explore your new certifications homepage.
if opp type = incremental only or renewal with incremental & revenue type = new, the change type field must be populated. how to write VR fo this?
3 answers
Loading
  1. Mar 23, 2020, 8:34 PM

    Try this:

    AND(

    OR(

      ISPICKVAL( type, "incremental only" ),

      ISPICKVAL( type, "renewal with incremental" )

      ),

      ISPICKVAL(revenue_type__c,"New"),

      ISBLANK(TEXT(change_type__c))

    )

     

    I am assuming your type and revenue_type__c field is picklist field and please also check our picklist values API name from field definition.

     

    Hope this will help,

     

    Thanks

     

     
0/9000