Jump to content

How to export list of closed tickets for a duration of time.


ricoh

Recommended Posts

I am looking for an option from where i can export a list of all closed tickets for a last 30 days. But i am not getting any option in report section. please help me to find this. I have to sumbit this report to my manager as soon as possible. Or suggest me how to generate this customize report.

Link to comment
Share on other sites

if there isn't a specific built in report that can do, then you could always use a SQL query in phpmyadmin and export the result from that... e.g to get a list of closed tickets for January 2017, you could use this...

 

SELECT * FROM tbltickets WHERE tbltickets.status = 'Closed' AND tbltickets.lastreply BETWEEN '2017-01-01' AND '2017-01-31'

if you need more detail than the result supplies (e.g replies), then you'd need to join tables into the query... and for that you might need to post in Service Offers & Requests and pay a developer to write a specific custom query for you (or a WHMCS report to do the same thing).

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated