Skip to main content
Amin Ahcene が「#Sales Cloud」で質問

Hi All, i am trying to prevent admin user to be bound to the validation rule, but my formula is not correct , can someone help me.

 

AND( NOT(ISPICKVAL (Partner_Status__c, "Prospect")), ISBLANK( Billing_eMail_Address__c ) NOT($Profile.Name = "System Administrator")

 

Thanks in advance 

 

best 

 

#Sales Cloud  #Service Cloud

2 件の回答
  1. 2021年10月11日 12:45

    Hi 

    Please check if syntex are correct there.. here is with correct syntex. 

    AND( 

           NOT(ISPICKVAL (Partner_Status__c, "Prospect")), 

           ISBLANK( Billing_eMail_Address__c ),

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

    )

0/9000