Trigger workflow if it is this record type, has moved from In Approval status to Active and is a subscription type of Gold or Platinum.
Below is what I have, the syntax check out fine, but it's not working. What am I doing wrong??
AND( $RecordType.Name = "WebSource Contract", ISPICKVAL(PRIORVALUE(Status), "In Approval Process"), ISPICKVAL(Status, "Active"), (ISPICKVAL( Subscription_Type__c , "Gold")), OR(ISPICKVAL( Subscription_Type__c , "Platinum")))
Thanks in advance for the feedback!!
7 risposte
AND($RecordType.Name = "WebSource Contract",
ISPICKVAL(PRIORVALUE(Status), "In Approval Process"),
ISPICKVAL(Status, "Active"),
OR(
ISPICKVAL(Subscription_Type__c , "Gold"),
ISPICKVAL(Subscription_Type__c , "Platinum")))