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

Activate validation rule based on user login
Hello
I have a problem with a validation rule.
I wish it worked only for certain users.
How can I do this?
Thanks for the replies.
You need to sign in to do that
Don't have an account?
Hello
I have a problem with a validation rule.
I wish it worked only for certain users.
How can I do this?
Thanks for the replies.
Hi ,
For your specific I think you can make use of the global variable in salesforce that is $user.name.
It can be somewhat like below:-
AND (If ($user.name='ppp' . true, false), Yourcondition{say ~ IsNew()})
the part in red is how you should modify your validation rule..
Hope this helps....