Recent searches


No recent searches

Dustin Suits's Avatar

Dustin Suits

Joined Apr 15, 2021

·

Last activity Oct 16, 2021

Following

0

Followers

0

Total activity

3

Votes

0

Subscription

1

ACTIVITY OVERVIEW

Latest activity by Dustin Suits

Dustin Suits commented,

CommentExplore recipes

Hello @..., yes that is correct! We're trying to figure out how often tickets are being assigned to a group and someone outside of that group is solving. This would help us identify how often tickets are being assigned to this group incorrectly or how long this group spent on tickets without being the one to solve it. Thank you!

View comment · Posted Feb 15, 2021 · Dustin Suits

0

Followers

0

Votes

0

Comments


Dustin Suits commented,

CommentExplore recipes

If my organization has dozens of groups, how can I calculate the total number of tickets that were assigned to a specific group (and solved by any group)? I have tried the following formulas, filtering them to tickets created in 2021 for easier verification. 

Formula 1 - Seems like the logical option for organizations with a large number of zendesk groups, but displayed a wildly inaccurate number in the single digits. 

IF ([Changes - Field name] = "group_id" AND
[Changes - Previous value] = ANY AND
[Changes - New value] = "999xxx") THEN
[Update ID]
ENDIF

Attempt 2 - The outputted value was wildly inflated. I also would prefer not to use this method because it would require adding each group ID individually and it would remain a static list requiring manual updating if new groups are created. 

IF ([Changes - Field name] = "group_id" AND 

([Changes - Previous value] = "1xxxxx" OR  
[Changes - Previous value] = "12xxxx" OR
[Changes - Previous value] = "123xxx" OR
[Changes - Previous value] = "1234xx" OR 
[Changes - Previous value] = "12345x" ) 

AND
[Changes - New value] = "999xxx") THEN 
[Update ID]
ENDIF

View comment · Posted Jan 25, 2021 · Dustin Suits

0

Followers

2

Votes

0

Comments