In EazyBI, I want to create a chart that lists our sprints, and then shows for each sprint:
Once I can do this for the whole team (demonstrating the sprint-by-sprint success ratio for the team), I would want to create the same graphs per person to see what each team member's success rate is.
What is the best way to accomplish this?
Hi!
Together with Mattew, we got those measures:
1) To get "Sprint committed issues", calculated measure should be created:
Cache(NonZero(( [Measures].[Issues history], [Time].CurrentHierarchy.Levels('Day').DateMember( [Sprint].CurrentMember.get('Start date')) )))
2) For Sprint resolved issues, standard measure "Issues resolved" could be used.
3) To sum up estimates from committed issues, calculated measure could be the following:
Cache(Sum( Filter( Descendants([Issue].Currentmember, [Issue].[Issue]), [Measures].[Sprint Issues Committed] >0), ([Sprint].DefaultMember, [Measures].[Original estimated hours])) )
Be aware! As this measure iterates trough all issues and their changelogs, it is quite slow, therefore, should be used only for one or a few sprints selected in the report!
4) For Sprint resolved estimated hours, the measure could be the following:
(([Measures].[Original estimated hours], [Resolution].[Resolved]))
where [Resolution].[Resolved] is a calculated member in Resolution dimension with aggregated all resolutions except (unresolved).
5) For ratios, measures with divisions between needed calculated measures were created.
Ilze, eazyBI Customer support consultant
support@eazybi.com
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.