I would like to get a summary of "hours spent with sub-tasks" by specific labels. How can I make a custom measure to get the DISTINCT/UNIQUE "hours spent with sub-tasks", as the out of the box measure is giving me duplicates as an issue can have multiple labels?
The measures of an issue having several label values are counted to all the labels which are used for the issue. It seems fine as it gives correct result for each particular label. It is not possible to detect at the issue level which one of the labels should be considered for the issue, so there is no general solution for this requirement.
However, when the measure is consolidated at the "All Labels" level the total amount does not duplicate for issues having several labels.
Perhaps a reasonable use case for the problem could be when using the labels on the report pages. When selecting multiple label values in the report pages, the measure multiplies by the number of labels the issue is having. To avoid this, a calculated measure can be used instead of the standard one dividing the multiplied value by the number of issues created. The formula would be like this:
Sum(
Filter(Descendants([Issue].CurrentMember, [Issue].[Issue]),
[Measures].[Hours spent with sub-tasks]>0),
[Measures].[Hours spent with sub-tasks]/[Measures].[Issues created]
)
Best regards,
eazyBI support.
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.