Hello!
I have 2 dimensions with issue links and when filtering by date of creation I would like it to only do so by the dimension called “Nivel 2”, however it would filter me by both dimensions showing me wrong information. How can I achieve that behavior? Thank you!
PD: The column Nivel 2 is Issue Dimension and column Nivel 3 is Linked Issue Dimension
Hi,
A solution to filter by the linked issue creation date is to implement a new custom measure for that:
([Measures].[Issues created],
[Issue].[Issue].GetMemberByKey(
[Bugs].CurrentMember.key
),
[Bugs].CurrentHierarchy.DefaultMember)
In my example, the Bugs dimension is the linked dimension corresponding to the Nivel 3 dimension in your screenshot.
Kindly,
Janis, eazyBI support