Hello,
I would like to build a table in order to show the number of issues “done”, “in progress”, “to do” or “waiting” (this is “status” of my issues) according to a unique epic ticket.
i used the formula below in order to obtain the table you can see below.
problem, the formula check all the tickets of my project… and i would like to only scan the ticket linked to an epic.
How can i do this?
best regards,
ed file.
Sum(
Filter(
Descendants([Issue].CurrentMember,[Issue].[Issue]),
DateInPeriod(
[Issue].CurrentMember.GetDate('Created at'),
[Time].CurrentHierarchyMember
)
AND
[Measures].[Issues created]=1
),
CASE
WHEN [Measures].[Issue status]="Done"
OR [Measures].[Issue status]="In Progress"
OR [Measures].[Issue status]="To Do"
OR [Measures].[Issue status]="Waiting"
THEN 1
ELSE 0
END
)
ny idea to help me
Best regards