Hello,
I need help for a formula which I have created. In this formula I need to get data for Avg days took to close the ticket. My formula is generating wrong value. can you please look into my formula and guide me with the changes.
Avg(
Filter(
Descendants([Issue].CurrentHierarchyMember, [Issue].[Issue]),
[Measures].[Issues created] > 0
AND
NOT IsEmpty([Issue].[Issue].CurrentHierarchyMember.GetProperty(‘Closed at’))
),
DateDiffDays(
[Issue].[Issue].CurrentHierarchyMember.GetProperty(‘Created at’),
[Issue].[Issue].CurrentHierarchyMember.GetProperty(‘Closed at’)
)
)