Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

I would like to create a dashboard widget that shows items resolved last year vs. this year

Sherri Anderson
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 15, 2019

I am trying to create a filter in JIRA that I can use to create a pie chart.  I would like to show number of initiatives and epics resolved this year vs. number or initiatives and epics resolved last year.  I am not having much luck, can anyone please assist?

3 answers

1 accepted

1 vote
Answer accepted
Michael Kuhl {Appfire}
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 15, 2019

Hi Sherri - Try this JQL:

Resolved Last Year:

issuetype in (Initiative,Epic) and resolved >= startofyear("-1") and resolved <= endofyear("-1")

 Resolved this year:

issuetype in (Initiative,Epic) and resolved >= startofyear() and resolved <= endofyear()
0 votes
Ethan Cook July 29, 2019

With Jira built in reports, you won't be able to make the specific chart that you want to. If you used a plugin, such as eaziBI, you should be able to make this specific pie chart. This will take a bit of knowledge on how to use eazyBI, and the plugin isn't free, but that's an option. You can even export the chart from eazyBI onto your Jira dashboard.

If you don't need the chart to be automated, and you don't necessarily need it on your Jira dashboard, you could always make it manually in Excel. You could use the JQL queries that Michael wrote above and see how many results pop up for each, and then use those two numbers to make a pie chart in excel.

I hope this is helpful!

0 votes
Sherri Anderson
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 16, 2019

That is beautiful, thank you!!!  Now I just have to figure out how to make a pie chart with two searches lol

Suggest an answer

Log in or Sign up to answer