Column Chart showing opened and closed incidents per day
number of opened and closed incidents per day for the last 60 days. I know how to do it for Opened and Closed in different charts, but I want them overlaid in the same chart. I also want to create a chart that shows the number of non-closed incidents on that day (our backlog).
This is what I have so far:
SELECT CONVERT(Date,ClosedDate) as Closed<br> FROM WorkItem wi<br> WHERE DATEDIFF(dd,ClosedDate, Getdate()) <= 60<br> AND wi.ClassId = 'A604B942-4C7B-2FB2-28DC-61DC6F465C68'<br> AND ClosedDate > 0
SELECT CONVERT(Date,Created) as Opened<br> FROM WorkItem wi<br> WHERE DATEDIFF(dd,Created, Getdate()) <= 60 AND wi.ClassId = 'A604B942-4C7B-2FB2-28DC-61DC6F465C68'I group by Closed and Opened respectively.
Stephane
Answers
The Nice thing about analytics is you can edit the dashboard to pull what Cireson SQL statement to build the widget. That should get you started in building similar widgets for your business cases.
The Dashboard you refer to is also showing the Opened and Closed items in different charts, which is why I wanted to create my own...