Skip to main content
Olivia Forde (Lifes2good) 님이 #Data Management에 질문했습니다
Hi

 

I am trying to do this

 

AND(

 

ISPICKVAL( StageName , "Closed Won"),

 

ISPICKVAL(Account.Channel__c,  "Professional"),

 

NOT($Profile.Name = "System Administrator"),

 

OR(

 

NOT(ISPICKVAL(Account.Credit_Status__c, 'Approved up to £840')),

 

NOT(ISPICKVAL(Account.Credit_Status__c, 'Fully Approved' ))

 

))

 

I want the rule to fire when the stage is Closed Won and Channel is Professional and Profile not Sys Admin and Credit Status is not Approved up to £840 or Fully Approved

 

It works fine if I have only 1 credit status and no or
답변 5개
  1. 2015년 5월 13일 오전 10:16

    AND(

    ISPICKVAL(StageName, "Closed Won"),

    ISPICKVAL(Account.Channel_c, "Professional"),

    $Profile.Name <> "System Administrator",

    NOT(

    OR(

    ISPICKVAL(Account.Credit_Status__c, 'Approved up to £840'),

    ISPICKVAL(Account.Credit_Status__c, 'Fully Approved' )

    )

    )

    )

     

     
0/9000