Hi,
We have a report that shows a couple of statistics for the past 5 Sprints. The Rows are composed of the Sprints. I would like to know if it’s possible to find the number of people that have been assignees for the tasks (stories, subtasks, etc.) in each sprint. For example:
Team Members = 4
Thanks,
Mircea
Mircea,
Several similar solutions for this calculation would be appropriate. For instance, the following formula calculates the number of assignees working on any committed or added issue to the sprint:
NonZero(Count( Filter(Descendants([Assignee].CurrentMember,[Assignee].[User]), ([Measures].[Sprint issues committed]+ [Measures].[Sprint issues added])>0) ))
You can adjust the measures used in the condition of the Filter function to cover some other cases when counting the assignees for the sprint.
Kindly,
Janis, eazyBI
Hi Janis,
thanks for the answer. Based on your suggestion I came up wit a solution that is a bit different, adapted to our use case:
Created a new Measure called "Stories and Subtasks resolved":
([Measures].[Issues resolved],
[Issue Type].[Story]) +
([Measures].[Issues resolved],
[Issue Type].[Sub-task])
Then created the actual needed measure:
NonZero(Count(
Filter(Descendants([Assignee].CurrentMember,[Assignee].[User]),
([Measures].[Stories and Subtasks resolved]) >0)
))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.