EazyBI: Show all issues in a sprint

JaA January 19, 2018

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.
January 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

JaA January 24, 2018

Thanks Zane, works perfectly.

 

Regards,

Jan

Inbal Golan August 1, 2018

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.
August 1, 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
Inbal Golan August 1, 2018

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.
August 1, 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.

Inbal Golan August 2, 2018

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

Inbal Golan August 2, 2018

@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.
August 2, 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.

Inbal Golan August 2, 2018

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.

Antoine _Klee Group_ September 12, 2022

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.
September 21, 2022

Hi @Antoine _Klee Group_ ,
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

0 votes
Alan Gman February 9, 2020

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.
March 3, 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