Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hello,
I would like on my jira dashboard to show the count of each subtasks grouped per user story.
Let's say I have 3 stories, A-1, A-2 and A-3. on A-1 I have 2 subtasks in open and on A-3 I have 3 subtasks resolved, I would like an array with A1, A2 and A3 on the vertical side and Open, Resolved on the column with 2 and 3 on each line.
Would anyone see how I can build that?
Thanks for any help
I've built something similar as a traceability matrix (out of the box JIRA) only for me it was showing what Stories had linked defects.
First you create a saved filter for your y-axis. In my case I wanted all open stories in the current sprint say I named it "open sprint stories":
project = PROJNAME AND issuetype in (Story, Improvement) AND sprint in openSprints() AND status != Closed ORDER BY Rank
Next you create second filter for your x-axis building off the first filter. In my case I wanted all unresolved defects
issueFunction in linkedIssuesOf("filter = 'open sprint stories'", "Relates To") AND status != Closed
Finally In JIRA go to Reports -> all reports and find the report called Traceability Matrix
This report has two parameters (rows and columns). In rows I select filter 1 and in columns filter 2
Results will look similar to the below image.
Once I have the report looking the way I wanted, I copied the url and added it to the project shortcuts in JIRA so that I don't have to recreate each time
If you want to share it with others be sure and update the permissions of your filters from private to the group
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.