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
2 件の回答
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")
)