End Users with Multiple Open Tickets | Community
Skip to main content

End Users with Multiple Open Tickets

  • June 9, 2021
  • 3 replies
  • 0 views

I am looking to build a report that places end users into bracket percentages. Ideally, this would group end users into categories like so if they have more than one ticket open:

% with 1 ticket open
% with 2 tickets open
% with 3 tickets open
% with 4 or more tickets open
ETC
 
Has anyone tried to create this or have any advice for an approach? Explore is pretty limiting on the end user data side. 
 
 

3 replies

ZZ55
  • June 10, 2021

Danielle

That is a fun question. It looks like we can use the new aggregate functions here.

Use the metric DCOUNT(Requesters) and filter by ticket status so that we are only looking at active tickets (OPEN, NEW,PENDING)

Now create a custom attribute for our row to split the requester into buckets depending on the tickets they have. Best to use a Switch function.

So you have something like this:

To display as percentages, go to Results Manipulation>Result Path Calculation:


  • Author
  • June 10, 2021

@Graeme Carmichael Thank you so much for the response! This was very helpful. I have a particularly large data set, so it took some filtering to render results, but I was able to recreate!

Cheers!


raphael12
  • December 28, 2022

@zz55 Thank you !! Nice tip, but don't you should add: Case 0: "0 Tickets"? Otherwise 0 would be in default which is very wrong