Hi,
I am trying to get a matrix table with all sprints in a given project that displays sprint name as the primary dimension and Story points added, removed, completed and not completed each as a measure in the matrix table.
How can i achieve that?
See attachment below for the required results
Hi @Shraddha 👋
I wanna suggest you to try a new Sprint Performance Report where we have all the metrics for each sprint. You can see here added, removed, completed and not completed Story points as well.
I would be happy if you had a look at it!
Try Time In Status for Jira + Sprint Report for free.
You can also book a live demo - we'll show you the application inside out and answer all your questions.
Have a nice day, and happy sprinting 🥳
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Shraddha thank you! Happy Thanksgiving too!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Shraddha!
Here is an example table chart that I was able to make in Atlassian Analytics similar to the chart that you've shared here. The table chart displays Sprint names, Story points added, removed, completed and not completed:
The steps to create this chart in Analytics are as follows:
case when "Action"='added' then "Story points" else null end
The second custom formula column for story points removed will use the following SQL: case when "Action"='removed' then "Story points" else null end
Rename the new columns to "Story points added" and "Story points removed" for clarity.
Case when "Status"='Done' then "Story points added" else null endThe second custom formula column for story points not completed uses the following SQL:
Case when "Status"!='Done' then "Story points added" else null end
Rename the new columns to "Completed" and "Not completed" for clarity.
cast("COLUMN_NAME" as decimal)
"Completed"-"Story points removed"
Hopefully this chart example helps! If you have any questions on any of the steps above, please let me know!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Skyler Ataide for. the detailed explanation. That was really helpful.
I created the chart as described in the steps as is but somehow i get no data for the sprints. There are no points associated with any sprint as below
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Shraddha,
It looks like Query 1 and Query 2 are hitting the row limit, which could be causing problems with the left join. Are you able to increase the row limit in both queries from the default 1,000 rows to 100,000 rows to see if this fixes the issue?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome, happy to help! 😃
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Trying to repost my Comment/Questions. @Skyler Ataide @Shraddha
Thanks for the great walk thru. I was able to get data but what options do we have to display the information in a chart format. I really like the Great Gadgets information and the data behind the information.
Is something like this possible?
Can we achieve something like this in Atlassian Analytics. Base on the above walkthru, we have some of this data present. Any suggestions on how to get something similar to this or close to it in Analytics.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Shawn Stevens, it is possible to display the chart in the example as a Bar Line chart type in Atlassian Analytics! Additionally, depending on how your Velocity is calculated, you can use Guided formulas to include this calculation in the final chart. Based on the Great Gadgets chart that you shared, it appears that the Velocity displayed in this chart is an average of completed story points based on the last 3 sprints. Working with the same example in Atlassian Analytics that I shared in the thread above, there are a few steps to include this type of calculation in the chart:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Skyler Ataide Thanks for the update. I'm struggling with the numbers from what I'm seeing with the sprint reports and burndown information.
You will notice I'm getting negative numbers in completed. The Completed numbers aren't aligning to what I'm seeing.
2023.GhostRider.24 2023.Scrumbags.24
Committed: 39 33
Completed: 17 13
Added: 7 5
Removed: 13 9
Carryover: 17 16
I double checked the steps in your walk thru 2 times now and I'm missing something. As you can see the numbers in the Chart aren't in line with this.
Any suggestions on what I'm missing or doing wrong. I have added a filter on the first query to limit it to a specific project and then the sprints listed above.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Shawn Stevens! Would it be possible for you to create a support ticket here with this information included, so that our support team can take a closer look into your full query? When creating the ticket, you will want to select Technical issues and bugs and Atlassian Analytics as the product. 🙂
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Lucy Dilts! You'll want to enable the "Show full schema" toggle shown in your screenshot there in order for "Issue ID" column in the "Issue Field" table to display 🙂Once this toggle is selected, you should be able to see the "Issue ID" column available for selection in this table. Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Fabulous! Did the trick! Thanks so much!!!
Not sure if you are up for 2 for 2 but I am also trying to create a Burndown chart and not having much luck :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Lucy Dilts Great to hear, happy to help! For recreating the Burndown chart in Atlassian Analytics, I would first suggest checking out our Jira Software - Sprint Overview dashboard template to see if the charts on this dashboard help to provide some direction on querying your sprint data in Atlassian Analytics. If you already have a Burndown chart in Atlassian Analytics that you are currently working on, it would be best if you are able to create a support ticket with a link to your chart. This way our support team will be able to take a closer look into what you have built so far and provide some suggestions around how to best create this chart in your Analytics instance 🙂
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.