Skip to main content
Hello, 

 

I have a workflow that updates a field with Either a National Price Book Name OR a Standard pricbook. 

 

CUrrent workflow is not doing the job becuase I want the field to update if the field is Not Blank OR isCHanged.  I just can write it correctly 

 

OR( NOT(ISBLANK( National_Price_Book__c )),     NOT(ISBLANK( Related_Price_Book__c )) )

 

OR( NOT(ISBLANK( National_Price_Book__c )),     NOT(ISBLANK( Related_Price_Book__c )) )

 

 
답변 9개
  1. 2017년 7월 13일 오후 9:33
    You will need to change the Workflow Rule to evaluate "on create and every edit".

     

    Then, so, as an example formula:

     

     

    OR(

    AND(

    NOT(ISBLANK( National_Price_Book__c )),

    ISCHANGED(National_Price_Book__c)

    ),

    AND(

    NOT(ISBLANK( Related_Price_Book__c )),

    ISCHANGED(National_Price_Book__c)

    )

    )

     

     
0/9000