TRY NOW

Count of Tickets Created per Year and Month

Helpdesk

Discover the Number of Helpdesk Tickets Created

Report on the number of tickets that were created in a given month. Keeping track of the number of tickets that are created in the helpdesk is an important metric when it comes to forecasting and for estimating the amount of work. The report gives an overview of the amount of created tickets per year and month. Over time this data can be valuable to show why more staff is needed or why the average initial response time is increasing. Count of tickets created per year and month

Count of Tickets Created per Year and Month Query

Select Top 1000000 DatePart(yyyy, htblticket.date) As Year,
  DatePart(mm, htblticket.date) As Month,
  Count(htblticket.ticketid) As TicketsCreated
From htblticket
Where htblticket.spam <> 'True'
Group By DatePart(yyyy, htblticket.date),
  DatePart(mm, htblticket.date)
Order By Year Desc,
  Month Desc

Show

Hide

NO CREDIT CARD REQUIRED

Ready to get started?
You’ll be up and running in no time.

Explore all our features, free for 14 days.