Plot Multiple Epic Target End Dates

Hello, we have been plotting milestone dates as vertical lines on a burn-up chart (timeline view), by keying in the date manually in the calculated measure. These milestones correspond to Epics, and we’ve discovered that eazyBI can recognize the Epic’s target end dates and plot as vertical lines using the below calculation.

IIF(
DateInPeriod([Issue].[Issue].GetMemberByKey('EPIC NAME HERE').GetDate('Target end'), 
[Time].CurrentHierarchyMember)
, [Issue].[Issue].GetMemberByKey('EPIC NAME HERE').GetString('Epic Name'), null
)

Because we have a number of Epics, we’d like to not create each of these measures manually, is there a way for eazyBI to identify all the epics and end dates in one formula so that the epics will automatically appear and be updated if they are edited in Jira?

Similar to how “today” is noted below, we’d like all the Epic names to be identified on their target end date with one formula. Please let me know if I can clarify further. Thank you!

Screen Shot 2021-06-08 at 5.49.31 PM

The formula you are using might give you one specific epic name based on the target date. You would like to set the Epic issue key as a parameter for the function GetMemberByKey, though. This formula will show an epic name for an epic with issue key DG-255 with a target end date in the time period.

IIF(
DateInPeriod([Issue].[Issue].GetMemberByKey('DG-255').GetDate('Target end'), 
[Time].CurrentHierarchyMember)
, [Issue].[Issue].GetMemberByKey('DG-255').GetString('Epic Name'), null
)

If you would like to get all epics in a selected time period, you would like to access all issues and filter out epics with the date in the period.

NonemptyString(Generate(
  Filter(
    Descendants([Issue].CurrentMember,[Issue].[Issue]),
    DateInPeriod([Issue]. CurrentMember.GetDate('Target end'),
    [Time].CurrentHierarchyMember)
    AND
    [Measures].[Issue type] = "Epic"
  ),
  [Issue].CurrentMember.GetString('Epic Name'), ","
))

Here Is my report example to show Epics with delivery date on time:

I used both formulas to show the differences. The first one will show explicit Epic. The second one will show any Epics with a particular day in the period.

Daina / support@eazybi.com