Dear community,
I have a customfield, where an asset obejct is linked:
Clicking on it and being redirected into Asset there is the section “connected tickets”:
I want to filter on objects, where all connected tickets are Resolution = Done. Is there any possibility?
Best regards,
Nicole
Hello @Nicole.Brueckner ,
You can analyze this information either:
- In the Asset data cube using measure “Jira issues created” and “Jira issues resolved.”
Here you can create a simple formula that checks whether the measures are equal.
NonZero(Count(
Filter(
DescendantsSet([Object].CurrentHierarchyMember, [Object].CurrentHierarchy.Levels("Object")),
([Measures].[Issues created],
[Time].CurrentHierarchy.DefaultMember)=
([Measures].[Issues resolved],
[Time].CurrentHierarchy.DefaultMember)
)
))
- Or in Jira issue cube using Asset customfield. Here is an example of my formula using “Business Service” customfield:
Nonzero(Count(
Filter(
DescendantsSet([Business Service].CurrentHierarchyMember, [Business Service].[Business Service]),
([Measures].[Issues created],
[Time].CurrentHierarchy.DefaultMember)=
([Measures].[Issues resolved],
[Time].CurrentHierarchy.DefaultMember)
)
))
Kindly,
Gerda // support@eazybi.com