Skip to main content
AND ( ISCHANGED( Is_Renewal_Opp__c ),

 

 Is_Renewal_Opp__c = "True" , )

 

We are trying to create an opportunity workflow rule that runs if two things that are above are true, but we get a syntax error. What is the correct syntax?
9 Antworten
  1. 16. Okt. 2018, 15:13

    Like this:

    AND (

    ISCHANGED( Is_Renewal_Opp__c ),

    Is_Renewal_Opp__c = True

    )

     

     
0/9000