I set my criteria to look for a case to have the status of new and to have a change in ownership, and then I realized that the case assignment rule that changes ownership TO the queue triggers it. Now cases in the queue are showing in progress even though no one is working them.
I want this to happen whenever someone clicks the accept button or changes the case ownership to their name from a queue. I feel like it must be possible with a formula to evaluate that it's new and changing from a queue to set it in progress, and I think I could do it if it was a specific queue, but it needs to be any queue.
Is this possible?
Thank you!
4 Antworten
Change your PB Criteria for Executing Actions from Conditions are met to Formula evaluates to true and use this:
AND(
TEXT([Case].Status) = "New",
ISCHANGED([Case].OwnerId),
BEGINS(PRIORVALUE([Case].OwnerId), "00G")
)