This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Most Tickets per user monthly report.

FormerMember
FormerMember

I would like to run a monthly report that shows which client user had the most tickets per a request type.

Web Help Desk Version:

12.2.0 - Build #12.2.0.9011

  • I've been down this road before.  Per SW support they do not support client reporting.  I to would love to have a report that shows my heavy hitters.

  • For what its worth you can upvote that existing feature request here

  • MSSQL statement to get the top "users" for the past 90 days and their ticket totals.

    select d.FIRST_NAME +' '+ d.LAST_NAME as ClientName, count(a.JOB_TICKET_ID)

    from webhelpdesk.dbo.job_ticket a inner join webhelpdesk.dbo.client d

    on d.CLIENT_ID = a.CLIENT_ID inner join WebHelpDesk.dbo.status_type e

    on e.STATUS_TYPE_ID = a.STATUS_TYPE_ID

    where a.DELETED <> 1 and a.PROBLEM_TYPE_ID <> 11

    and a.REPORT_DATE >= getdate()-90

    group by d.FIRST_NAME +' '+ d.LAST_NAME

    order by count(*) desc