
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 个回答
Just some syntax errors, Karin. Almost there! Try this AND(
ISCHANGED(Status__c),
TEXT(Status__c) = "Suspended"
)