Skip to main content
Pooja Singh (Hexagon) 님이 #Ask An Expert에 질문했습니다
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개
  1. 2018년 10월 16일 오후 3:13

    Like this:

    AND (

    ISCHANGED( Is_Renewal_Opp__c ),

    Is_Renewal_Opp__c = True

    )

     

     
0/9000