Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,555,139
Community Members
 
Community Events
184
Community Groups

EazyBI: Show all issues in a sprint

Hi,

 

I'm looking for a way to show all issues in eazyBI, which where in our sprints. In Jira, I can use a JQL like

Sprint = "Sprintname"

and I can see all the issues. For our latest Sprint there are 14 issues (some of them were in previous sprints and some of them are not resolved). I imported the Sprint field in eazyBI as dimension and property, but I cannot display all 14 issues in the sprint. It doesn't matter if I use "Measures.Issues created", "Measures.Sprint issues committed" or "Sprint issues added" as columns. There are always some issues missing.

 

Kind Regards

Jan

2 answers

1 accepted

1 vote
Answer accepted
Zane eazyBI Support
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.
Jan 23, 2018

Hi Jan,

Each measure provides Sprint related data from a different perspective. 

  • Sprint issues committed - count of issues at the moment when a sprint was started.
  • Sprint issues added - count of issues which have been moved to a selected sprint while the sprint was active. Does not include issues committed at the start of a sprint.
  • Issues created - count of issues in a sprint. If an issue was in several sprints, then an issue is counted only for the last sprint.



If you would like to get a count of all issues which have been in the sprint at some point, then you may define new calculated measure based on measures "Sprint issues committed" and "Sprint issues added".
A formula for the calculated measure may look like this:

[Measures].[Sprint issues committed] 
+ 
[Measures].[Sprint issues added]



Best,
Zane Baranovska / support@eazybi.com

Thanks Zane, works perfectly.

 

Regards,

Jan

how do i calculate committed and completed?

Zane eazyBI Support
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.
Aug 01, 2018

@Inbal Golan, you may use measures Sprint issues committed and Sprint issues completed, those measures are generated by eazyBI.

In eazyBI documentation, you can get a list of available measures to analyze Sprints and story points.

 

Best,

Zane / support@eazyBI.com

Like Amit_Shiloach likes this

Thank you for the answer Zane.

But this does not help because I'm interested to calculate only the original time estimation of the issues that were committed (not added) AND completed in a sprint

Zane eazyBI Support
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.
Aug 01, 2018

I see; in that case, you may define new calculated measures to calculate the original estimate for committed issues in a Sprint.

The formula for calculated measures may look like this:

Sum(
-- set of issues commited for a sprint
Filter(
Descendants([Issue].CurrentMember,[Issue].[Issue]),
[Measures].[Sprint issues committed] > 0
),
-- sum up original estimate
([Measures].[Original estimated hours],
[Sprint].DefaultMember)
)

You may check out this conversation How to select tasks that were completed in a certain sprint as well, where my colleague has provided an answer on the similar use case.

@Zane eazyBI Support thanks a lot, i'm going to check this out right away.

@Zane eazyBI Support the calculated member you suggested will take into account all the committed while I need to calculate only the completed ones.

How can i filter the completed only?

eazyBI Support
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.
Aug 02, 2018

@Inbal Golan, You can modify the filter part of the provided formula (my answer on Aug 01, 2018).

For example, to calculate the original estimate for completed issues, a formula may look like this:

Sum(
-- set of issues completed in a sprint
Filter(
Descendants([Issue].CurrentMember,[Issue].[Issue]),
-- filter conditions for issues
[Measures].[Sprint issues completed] > 0
),
-- sum up original estimate
([Measures].[Original estimated hours],
[Sprint].DefaultMember)
)


And to calculate the original estimate for issues which were committed and completed in as sprint, a formula may look like this:

Sum(
-- set of issues committed AND completed in a sprint
Filter(
Descendants([Issue].CurrentMember,[Issue].[Issue]),
-- filter conditions for issues
[Measures].[Sprint issues committed] > 0
AND [Measures].[Sprint issues completed] > 0
),
-- sum up original estimate
([Measures].[Original estimated hours],
[Sprint].DefaultMember)
)

 


Check out eazyBI documenation, where you will find more information how to build calculated measures and a list of available function and some examples how to apply them.

Thank you @Zane eazyBI Support, for some reason i had an issue with the AND syntax.

It works great now! your quick replies are highly appreciated.

Hi @eazyBI Support, in the first message you say:

Issues created - count of issues in a sprint. If an issue was in several sprints, then an issue is counted only for the last sprint.

Is there a measure which would do the exact opposite? As in count the issues in a sprint and if an issue was in several sprints then only count the first one?

 


Thanks.

Gerda Grantiņa
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.
Sep 21, 2022

Hi @Antoine _absent du 6_6 au 17_6_ ,
By default, there isn't such measure, but you can create a new calculated measure that works if you select a specific Sprint in your report.
The idea is to use the "Issue sprints" property that holds all sprint values for the issue and compare the first sprint (by extracting the first one if there are multiple sprints) with the current sprint selection.

Sum(
Filter(
Descendants([Issue].CurrentMember, [Issue].[Issue]),
([Measures].[Issues created],
[Sprint].CurrentHierarchy.DefaultMember)>0
AND
[Measures].[Issue Sprints]<>"(no sprint)"
),
CASE WHEN
-- extract first sprint
IIf(
-- if there are multiple sprints
CoalesceEmpty([Issue].CurrentHierarchyMember.Get('Sprint IDs'),'') MATCHES '.*,.*',
--extract first sprint name
ExtractString(
[Measures].[Issue Sprints],
"^[^,]*"
),
--else return the sprint name
[Measures].[Issue Sprints]
) =
-- compare with current sprint selection
[Sprint].CurrentHierarchyMember.Name
THEN
Val(([Measures].[Issues created],
[Sprint].CurrentHierarchy.DefaultMember))
END
)

In the report:

eazyBI_Sprint_report.png

best, 
Gerda // support@eazyBI.com

Hi @Zane eazyBI Support ,

 

I am wondering how I can get the issues that were only created in an active sprint and filter out issues that moved from previous sprints.

 

Thanks

Roberts Čāčus
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.
Mar 03, 2020

Hi @Alan Gman ,

 

You can try creating a new calculated measure, that looks for issues whose  date of addition to the current Sprint matches the first date the issue was added to any Sprint. Please have a look at the picture below:

Sum(
Filter(
Descendants([Issue].CurrentHierarchyMember,[Issue].[Issue]),
Not IsEmpty([Measures].[Issue Sprint])
AND
(
[Transition field].[Sprint],
[Measures].[Transition to first timestamp],
[Sprint].CurrentHierarchyMember
)
=
(
[Transition field].[Sprint status],
[Measures].[Transition to first timestamp],
[Sprint].CurrentHierarchy.DefaultMember
)
),([Measures].[Issues created],[Sprint].CurrentHierarchy.DefaultMember)
)

For this to work, have the Sprint dimension "Sprint" members in the report.

 

Best,

Roberts // support@eazybi.com

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events