2.4K
Formula for Salesforce process builder when change from one picklist value to another value
AND(
OR(
TEXT([Case].Status) = “InProgress”,
TEXT([Case].Status) = “Working”
),
TEXT(PRIORVALUE([Case].Status)) = “Closed”
)
Use the Custom Lable in Process builder:
$Label.CUSTOMLABELNAME
Example 1:
OR(
AND( ISPICKVAL([Opportunity].StageName, "Prospecting"),
ISBLANK([Opportunity].NextStep) ),
AND (ISPICKVAL([Opportunity].StageName, "Prospecting"),
ISCHANGED([Opportunity].StageName),
NOT(ISBLANK([Opportunity].NextStep)),
NOT(ISCHANGED([Opportunity].NextStep)) ) )
Example 2: