Skip to main content
Is there a simple formula for a Workflow rule that will fire if a Picklist value changes from one value to another? 

 

Let's say that the Picklist is called "Risk" and the values are Green,Yellow,Red and Known Loss. We want to send an email out when the value changes from any value to another value.

 

Thanks!
2 answers
  1. Sep 5, 2012, 8:16 PM
    This should work, converts your pick-list to text and won't fire if prior value blank (which it sounds like you only want changes between values)

     

    (AND(not(text(Priorvalue(FIELDNAME )) = null), 

     

    ISCHANGED( FIELDNAME) 

0/9000