You’ve been so helpful in getting the exact data I need that we’re getting more requests for more views!
If you recall Displaying specific issue types in an epic where the epic has a specific custom field , you helped me establish a view where a ticket type “Milestone” exists based on the parent “Program” field in the parent at two hierarchies - one at the epic, and one at the initiative.
I can’t get accurate measurements for how many of these “Milestone” tickets exist that are Open (status not closed), Overdue (status not closed and past todays date) Unrefined (no Target end date assigned).
The report should look like this
Initiative (with a + to expand epics)|Milestone Closed|Milestone Open|Milestone Overdue|Milestone Unrefined
![]()
The data is set up like this and I want to report on the children at the Initiative Level. Is this possible?
Initiative
Epic 1
Deliverable1
Deliverable2
Epic 2
Deliverable1
Deliverables 3-15.
Measures Below:
Here are my current calculated measures:
Deliverables Unrefined
– Milestones Unrefined (Final, with correct context)
Sum(
Filter(
Descendants([Issue].CurrentHierarchyMember, [Issue].[Issue]),
– Pre-filter for non-closed Milestones for performance
[Issue].CurrentHierarchyMember.GetString(‘Issue Type’) = ‘Milestone’
AND
[Issue].CurrentHierarchyMember.GetString(‘Status’) <> ‘Closed’
),
– Check if the Target End is empty for EACH descendant issue
CASE WHEN
IsEmpty(
([Measures].[Issue Target end], [Issue].CurrentHierarchyMember)
)
THEN 1
ELSE 0
END
)
Deliverable Overdue:
– Milestones Overdue (Final, with correct context)
Sum(
Filter(
Descendants([Issue].CurrentHierarchyMember, [Issue].[Issue]),
– Pre-filter for non-closed Milestones for performance
[Issue].CurrentHierarchyMember.GetString(‘Issue Type’) = ‘Milestone’
AND
[Issue].CurrentHierarchyMember.GetString(‘Status’) <> ‘Closed’
),
– Check the Target End for EACH descendant issue
CASE WHEN
DateCompare(
([Measures].[Issue Target end], [Issue].CurrentHierarchyMember),
“today”
) < 0
THEN 1
ELSE 0
END
)
Deliverable Open
– Milestones Open (Final, Most Efficient)
(
[Measures].[Issues with Target end],
[Issue Type].[Milestone],
[Resolution].[(unresolved)]
)
[Measures].[Milestones Overdue]

