/build/static/layout/Breadcrumb_cap_w.png

Another Help Desk Report

Hi,

I have been looking though all the monthly report assistance requests and solutions posted on the site, and have tried a lot of the different suggestions, I am still unable to get the information I need.

I'm not a MySQL or DB wizard so please excuse my inability to even supply any parameters I have tried, mostly I use the cut and paste method out of other posts.

What I need is a report that has open tickets assigned to agent per month, closed tickets per agent per month and total number of closed tickets per month.

Thanks in Advance.

Fraser Waugh

0 Comments   [ + ] Show comments

Answers (1)

Posted by: dchristian 12 years ago
Red Belt
0
Here's a pretty basic report that might help.

It just looks at the created date of the ticket and then checks to see if its still open or closed.
SELECT U.FULL_NAME,
DATE_FORMAT(H.CREATED,'%Y-%m') AS MONTH,
IF(S.STATE = 'CLOSED','Closed','Open') as STATE,
COUNT(*) NUMBER_OF_TICKETS
FROM HD_TICKET H,
HD_STATUS S,
USER U
WHERE H.HD_STATUS_ID = S.ID
AND U.ID = H.OWNER_ID
GROUP BY FULL_NAME,
MONTH,
STATE
ORDER BY MONTH,
FULL_NAME
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.

Don't be a Stranger!

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

Sign up! or login

View more:

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