/build/static/layout/Breadcrumb_cap_w.png

I would like to display a total count of tickets from the K1000 helpdesk

ideally - if the end result would show:  Total count per helpdesk and how many tickets were actually closed in less than 24 hours that would be fantastic.  Broken down by quarter would be "pie in the sky".


0 Comments   [ + ] Show comments

Answers (2)

Answer Summary:
Custom SQL report: select count(*) TOTAL from HD_TICKET T where T.CREATED > date_sub(now(), interval 24 hour) and T.TIME_CLOSED > date_sub(now(), interval 24 hour) and T.TIME_CLOSED = GREATEST(T.TIME_CLOSED, T.TIME_STALLED, T.TIME_OPENED)
Posted by: nshah 11 years ago
Red Belt
0

You aren't going to be able to do that in the interface unless support has something they can do in the back end via professional services. You can create a custom SQL report that would tive you that and have it sent via email to you every day if you wanted. 

I'm sure if you did a search you might find some code on helpdesk ticket counts that you could use as a template or exactly as it is. 

Posted by: mpace 11 years ago
Red Belt
0
select count(*) TOTAL from HD_TICKET T where T.CREATED > date_sub(now(), interval 24 hour)
and T.TIME_CLOSED > date_sub(now(), interval 24 hour)
and T.TIME_CLOSED = GREATEST(T.TIME_CLOSED, T.TIME_STALLED, T.TIME_OPENED)

Comments:
  • Sorry, should have clarified that this report will give you a total number of tickets and tickets closed in the last 24 hours. You can change the "interval 24 hour" to tweak the time frame. - mpace 11 years ago

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ