Skip to main content
Mattias Nordin (Volvo Cars) 님이 #Data Management에 질문했습니다
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개
  1. 2012년 9월 7일 오전 9: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