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 risposte
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"
)