Hi,
I have Jira set up with epics, under each epic there are tasks, bugs, stories etc. Each epic has it’s own fixVersion but at the same time two epics can have the same fixVersion. The fixVersion for all issues under epic is the same which results in 100+ issues with the same fixVersion sometimes.
I release those epics every day and I want to count how many fixVersions were released in each month.
I found something like this but it times out when i want to drill through issues to check if the results are correct
And I’m not sure if the results are correct because when I count manually fixVersions released, I get different value than what this is giving me
NonZero(
Count(
Filter(
Descendants([Fix Version].CurrentMember, [Fix Version].[Version]),
DateInPeriod(
[Measures].[Version release date],
[Time].CurrentHierarchyMember
)
AND
[Fix Version].CurrentMember.Get('Status') <> 'Unreleased'
AND
(
[Measures].[Issues created],
[Time].CurrentHierarchy.DefaultMember
) > 0
)
)
)
I’d appreciate any help!