Skip to main content
Hi all - 

 

Struggling with this easy formula on a workflow. 

 

I want the workflow to go into effect only when the Status is changed and the value it's chaged to is "Suspended"

 

I tried the below formula but because it's a picklist, I'm having trouble with it. What am I doing wrong?

 

ISCHANGED(TEXT( Status__c )& 

 

TEXT(Status__c = "Suspended"))
4 answers
  1. Dec 16, 2019, 3:22 PM
    Just some syntax errors, Karin. Almost there! Try this

     

     

    AND(

    ISCHANGED(Status__c),

    TEXT(Status__c) = "Suspended"

    )

0/9000