Hello, great community!
I am looking to create two measures.
First need to show how many childrens my Epic have. Using the measurement below I was able to get this information
Count(Childrenset([Issue.Epic].Currentmember))
Second, I need to show which of these children of the epic have the completed status, to have a quantitative view. I was able to get this information but not in the form of a number, but rather the ID of all completed cards, however I need a grouping of these cards, showing how many are completed.
Below is the metric I used to get the information by writing the ID of each card:
Generate(
Filter(
DescendantsSet([Issue.Epic].Currentmember,[Issue.Epic].[Parent]),
[Status].[Status].GetMemberNameByKey(
[Issue.Epic].CurrentMember.get('Status ID')
) = "Done"
),
Cast([Issue.Epic].CurrentMember.key as string),
","
)
If anyone can help me find this information I will be very grateful.