Issues deployed on each fix version (Release)

Im working on create a report that show me the number of release that i have each month ( using fix version) and also i would like to represent the number of issues that the fix version has.
So far im using,
Pages: Project
Rows :Time filtering by month
Column Meusure i create one for frecuency Deliver: with this formula:
–Release Count
Sum(
Filter(
Descendants([Fix Version.By name].CurrentHierarchyMember,[Fix Version.By name].[Name]),
DateInPeriod(
[Fix Version.By name].CurrentHierarchyMember.FirstChild.get(‘Release date’),
[Time].CurrentHierarchyMember
)
),
1
)

Now i need some help to create a new calculate mesuare to SUM number of issues that has those Frecuency Deliver

Hi @julitum

In that case, try this code:

Sum(
  Filter(
    Descendants([Fix Version.By name].CurrentHierarchyMember,[Fix Version.By name].[Name]),
    DateInPeriod(
      [Fix Version.By name].CurrentHierarchyMember.FirstChild.get('Release date'),
      [Time].CurrentHierarchyMember)
  ),
  --issue count in version ignoring issue creation date
  ([Measures].[Issues created count],
  [Time].CurrentHierarchy.DefaultMember)
)

Actually, you might explore different report examples on our demo account.
https://eazybi.com/accounts/1000/dashboards/5957-versions-overview

Martins / eazyBI support