[SalesForce] Avoid reassigning owner in the case

We have active assignment rule in our organization to assign the case to queue.

Assignment rule is,
enter image description here

Whenever case matches this rule it gets assigned to particular queue. But when changed the case owner from queue to particular user with field Project is true it gets reassigned to same queue. How can I change this rule in such way to avoid reassigning.

Best Answer

you need to add another filter which can stop your assignment rule to fire everytime. For example, you donot want to fire this rule when case owner changes but project__c is true, change your assignment rule criteria to "Formula evaluates to true" and use below:

PRIORVALUE(OwnerId) <> OwnerId && Project__c

If you want to run your assignment rule only during creation of case use this formula.. ISNEW() && Project__c

Related Topic