Hi all!
Im tying to create this count filter
Count(
Filter(
Descendants([Issue].CurrentHierarchyMember, [Issue].[Issue]),
[Measures].[Issues created] > 0
AND NOT IsEmpty([Measures].[Issue labels])
AND NOT IsEmpty([Measures].[Issue affects versions])
AND (
[Measures].[Issue affects versions] MATCHES
ExtractString([Measures].[Issue labels], "(\d\.\d\.\d)")
)
)
)
But its only show me the count on individual issue and I get the following error:
#ERR: mondrian.olap.fun.MondrianEvaluationException: Expected value of type BOOLEAN; got value 'mondrian.olap.fun.MondrianEvaluationException: Exception while executing function MATCHES: java.lang.NullPointerException ' (class mondrian.olap.fun.MondrianEvaluationException)
How can i show it like “Issues created”?