Hello everyone,
I am fairly new to EazyBI. I am trying to create a calculated member that will find all the labels that start with "team#".
I have this
Aggregate(
Filter(
[Label].[Label].Members,
[Label].CurrentHierarchyMember.Name MATCHES "^team#.*"
)
)
And the EazyBI documentation has this
Aggregate( Filter( [Issue].[Issue].Members, [Issue].CurrentHierarchyMember.Name MATCHES ".*SMT.*" ) )
My code is not working. I am trying to apply this in the pages section so when the labels tab is clicked on only the teams show up and not the 100s of other labels.
Thanks for the help!
EDIT Found a solution...