Skip to main content
Hi happy people.

 

Im playing around witht a workflow to execute a field update when another field is changed from value A or B to X.

 

Can't get this to work as i want it to work. Any suggestions?

 

THANKS !
6 réponses
  1. 7 sept. 2012, 09:42

    Hmmm it is always good to describe your problem... 

     

    This works for me:

     

     

    AND( 

     

    OR( 

     

    PRIORVALUE(Erp_Invoice_Status_Code__c ) == "1", 

     

    PRIORVALUE(Erp_Invoice_Status_Code__c ) == "2" 

     

    ), 

     

    Erp_Invoice_Status_Code__c == "0" 

     

    )

0/9000