Skip to main content
I'm trying to write a formula that says:

 

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
  1. 24 gen 2012, 21:23
    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")))

0/9000