Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Beretta031
Engaged Sweeper

Hello, 

I am looking for a report that can filter by ticket type and by month and THEN time spent on average for the month on said ticket type. 

1 REPLY 1
FrankSc
Lansweeper Tech Support
Lansweeper Tech Support

Hello, 

 

We found the following report in another post, this may be a good report to start from and add additional filters specifically for your ticket types.

Select Top 1000000 
   htblticket.ticketid As ID, 
   htblticket.subject As Subject, 
   htblticket.updated As [Closed Date], 
   AVG(htblnotes.timeworked) As [Average Time Worked (Minutes)], 
   htblusers.name As Agent, 
   htbltickettypes.typename As [Ticket Type], 
   DatePart(mm, htblticket.updated) As Month, 
   DatePart(yy, htblticket.updated) As Year 
From 
   htblticket 
Inner Join 
   htblnotes On htblticket.ticketid = htblnotes.ticketid 
Inner Join 
   htblagents On htblagents.agentid = htblticket.agentid 
Inner Join 
   htblusers On htblusers.userid = htblagents.userid 
Inner Join 
   htblticketstates On htblticketstates.ticketstateid = htblticket.ticketstateid 
Inner Join 
   htbltickettypes On htblticket.tickettypeid = htblticket.tickettypeid 
Where 
   htblticketstates.statename = 'Closed' 
Group By 
   htblticket.ticketid, 
   htblticket.subject, 
   htblticket.updated, 
   htblusers.name, 
   htbltickettypes.typename, 
   DatePart(mm, htblticket.updated), 
   DatePart(yy, htblticket.updated)
 

Reports & Analytics

Ask about reports you're interested in and share reports you've created. Subscribe to receive daily updates of reports shared in the Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now