You need to sign in to do that
Don't have an account?
Terry_0101
Simple Validation Rule malfuntion
How to make these profiles exempt from this Validation Ruel?
AND(
Amount__c > 1,
ISBLANK(TEXT( type__c )),
NOT(ISNEW()),
NOT(OR(
$Profile.Id<>"00e40000000oRAA",
$Profile.Id<>"00e4000000132AW",
))
AND(
Amount__c > 1,
ISBLANK(TEXT( type__c )),
NOT(ISNEW()),
NOT(OR(
$Profile.Id<>"00e40000000oRAA",
$Profile.Id<>"00e4000000132AW",
))
Yes, this might be possible either by calling the user ID or profile in the validation rule:
&& (NOT($User.ProfileId="005A00000015yWV"))
&& (NOT(CONTAINS($Profile.Name,"API"))
Please also try and follow these links
https://developer.salesforce.com/forums/ForumsMain?id=906F00000008x6qIAA
Best Regards
Naga kIran
AND(
Amount__c > 1,
ISBLANK(TEXT( type__c )),
NOT(ISNEW()),
&& (NOT($User.ProfileId="005A00000015yWV"))