Top Brass at my company loves the metrics that our On-Premise Helpdesk Dashboard puts out, but they want to see past 90 days, 180 days, year… with those exact same graphic metrics that they’re all used to seeing.<\/p>\n
Does anyone know where in the source you can code in those additional drop downs?<\/p>\n
I can’t imagine it being too hard if you’re just changing the variable for the lookup to go from 7 to 30 to 90 to 180…ect<\/p>\n
For example…this is what it is now…<\/p>\n
<\/p>\n
This is what I would like to do…<\/p>\n
<\/p>","upvoteCount":9,"answerCount":3,"datePublished":"2019-04-08T20:59:31.000Z","author":{"@type":"Person","name":"uwey","url":"https://community.spiceworks.com/u/uwey"},"suggestedAnswer":[{"@type":"Answer","text":"
Top Brass at my company loves the metrics that our On-Premise Helpdesk Dashboard puts out, but they want to see past 90 days, 180 days, year… with those exact same graphic metrics that they’re all used to seeing.<\/p>\n
Does anyone know where in the source you can code in those additional drop downs?<\/p>\n
I can’t imagine it being too hard if you’re just changing the variable for the lookup to go from 7 to 30 to 90 to 180…ect<\/p>\n
For example…this is what it is now…<\/p>\n
<\/p>\n
This is what I would like to do…<\/p>\n
<\/p>","upvoteCount":9,"datePublished":"2019-04-08T20:59:31.000Z","url":"https://community.spiceworks.com/t/helpdesk-dashboard-past-90-days-view-possible/706405/1","author":{"@type":"Person","name":"uwey","url":"https://community.spiceworks.com/u/uwey"}},{"@type":"Answer","text":"
I’ll get torched for this but if you are relying on the Spiceworks metrics to wow the brass, don’t<\/em> - the dashboard fatal flaw is the display of metric data. There are anomalies that will frustrate you to no end. Especially the reports that inexplicably leave off a tech who belongs in the “top” list. Like I said, I’ll get roasted but alas, you have been warned.<\/p>","upvoteCount":0,"datePublished":"2019-04-10T03:01:11.000Z","url":"https://community.spiceworks.com/t/helpdesk-dashboard-past-90-days-view-possible/706405/2","author":{"@type":"Person","name":"seanrutledge","url":"https://community.spiceworks.com/u/seanrutledge"}},{"@type":"Answer","text":" Try this:<\/p>\n Which I copied and modified from:<\/p>\nSELECT users.first_name || \" \" || users.last_name AS \"Assigned to\"\n , (SELECT Count(assigned_to) FROM tickets WHERE users.id=tickets.assigned_to and (tickets.closed_at>=date('now','-90 day'))) as \"Past 90 days.\"\nFROM tickets \nLEFT OUTER JOIN users ON users.id=tickets.assigned_to\nWHERE tickets.assigned_to NOT NULL\nGROUP BY \"Assigned to\"\nORDER BY \"Assigned to\"\n<\/code><\/pre>\n