Kayako logo
SupportSuite, eSupport and LiveResponse Discussion, troubleshooting and feedback related to Kayako's flagship support desk products SupportSuite, eSupport and LiveResponse.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
Joomlashack Offline
New Member
 
Posts: 1
Join Date: Jun 2007
Staff Member stats: Wats the current status? - 27-06-2007, 04:26 PM

I am trying to get the following stats on individual staff members

# tickets dealt with
Average response time
Time worked

I have read the forums and see lots of old posts of this, and comments about scripts being added to the CVS.

Does any script from a 3rd party dev exist currently?
   
Reply With Quote
  (#2) Old
eiden Offline
Member
 
Posts: 211
Join Date: Apr 2006
Location: Norway
27-06-2007, 08:53 PM

This SQL gives you the number of tickets your staff members have worked on:
Code:
SELECT swstaff.fullname, 
(SELECT COUNT(DISTINCT swticketposts.ticketid) FROM swticketposts where swticketposts.staffid = swstaff.staffid) as tickets
FROM swstaff
ORDER BY tickets DESC
   
Reply With Quote
Reply

Tags
current, member, staff, stats, status, wats

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Powered by vBulletin® Version 3.7.5
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Help desk software by Kayako.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48