Basic Report - Number of Tickets by Queue
Just looking for a simple report that will show the number of tickets opened under each queue. Would like to run one that will show by month and one that will show TYD (2014 only). I've managed to get most others going except this one, which seems crazy as it should be easy.
Any help would be appreciated!
Total Tickets by Department (Opened/Stalled/Closed) Year to Date (YTD)
Queue # of Tickets
Queue 1 59
Queue 2 120
Queue 3 38
Etc…
Answers (2)
Thanks Chuck! Any way I can set it to run on only our new queues?
WHERE HD_TICKET.HD_QUEUE_ID = 21 or 22 or 23 or 24 or 25 or 26 or 27 or 28 or 29 or 30 or 31)
Comments:
-
Yes. You need to add a where clause:
and HD_QUEUE_ID in (2,3,4,5) - chucksteel 10 years ago-
Got it, thanks! - closetgeek 10 years ago
You can experiment with running mysql queries using a tool like mysql workbench or flyspeed. - Jbr32 10 years ago