You need to sign in to do that
Don't have an account?
Mohd Nabeel
How will a user be able to assign a case to himself irrespective of any status
Here is the validation rule, which is working fine, but there is one more thing i want to do that if a reporting agent is assigning any case to itself then it should be able to assign it irrespective of the status.
AND(ISCHANGED(OwnerId), NOT(OR(ISPICKVAL(Status,"Escalated"),ISPICKVAL(Status , "Re-Routed"))),NOT($Profile.Name<>"Reporting Agent"))
from this rule it is also validating that if the user agent is assigning a case to itself then it is firing this, How can i fix this?
AND(ISCHANGED(OwnerId), NOT(OR(ISPICKVAL(Status,"Escalated"),ISPICKVAL(Status , "Re-Routed"))),NOT($Profile.Name<>"Reporting Agent"))
from this rule it is also validating that if the user agent is assigning a case to itself then it is firing this, How can i fix this?
Why don't you use below validation formula. It will let user assign case to hismelf irrespective of any status.
ISCHANGED(OwnerId) && OwnerId != $User.Id
All Answers
Why don't you use below validation formula. It will let user assign case to hismelf irrespective of any status.
ISCHANGED(OwnerId) && OwnerId != $User.Id
Thanks for the answer i have modified my rule by adding your rule in my original rule now its working fine
OR (AND(ISCHANGED(OwnerId), NOT(OR(ISPICKVAL(Status,"Escalated"),ISPICKVAL(Status , "Re-Routed"))),NOT($Profile.Name<>"Reporting Agent")), ISCHANGED(OwnerId) && OwnerId != $User.Id)