You need to sign in to do that
Don't have an account?

Validation Rule Admin Exception
Hi i have this VR that works already but when i tried adding an exception for admin i keep getting errors
WORKING VR:
AND(
ISCHANGED(Established_1st_Contact__c
),
NOT(ISBLANK(PRIORVALUE(Established_1st_Contact__c
))))
I WANT TO ADD TO IT:
NOT($Profile.Name = "System Administrator"))
Or anything else that would work
Thx in advance
Try this
All Answers
Try this
Thx a lot Steve it's working like usual
Just one thing in case somebody else has same issue in future, there is an extra bracket at the end
AND(
NOT($Profile.Name = "System Administrator"),
ISCHANGED(Established_1st_Contact__c),
NOT(
ISBLANK(
PRIORVALUE(Established_1st_Contact__c))))
yeah, bad copy&paste on my part
I also want to fire my validation rule for all profiles except System admin
AND(
NOT($Profile.Name = "System Administrator"),
Customer_Flag__c,
IF(ISPICKVAL( Call_Outcome__c, 'Left Message with Third Party')
||ISPICKVAL( Call_Outcome__c, 'Payment extension under Review')
||ISPICKVAL(Call_Outcome__c, 'Call Back')
||ISPICKVAL( Call_Outcome__c, 'Promise to Pay')
||ISPICKVAL( Call_Outcome__c, 'Paid partially'),
ISNULL( Call_Back_Date__c), false)
)
but its not working please correct me if am doing something wrong.