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 Antworten
  1. 16. Dez. 2019, 15:22
    Just some syntax errors, Karin. Almost there! Try this

     

     

    AND(

    ISCHANGED(Status__c),

    TEXT(Status__c) = "Suspended"

    )

0/9000