Hello I’m trying to create a measure that Sum ONLY the children tickets with status NOT started
Can you help me with the formula?:
Sum(
Filter(
ChildrenSet([Issue].CurrentHierarchyMember) AND
[Status].[Not Started]
,
[Measures].[Issues created]
))
Thanks!