Find issues that contain the word IMPL

Hi, @hvh

Welcom to the eazyBI community.

To get all the features, that has the IMPL I would suggest define a new JavaScript calculated custom field in eazyBI for better performance.

Please follow the link to the community post where it’s described: Filter open issue by summary - #2 by roberts.cacus

But the measure formula might look like this:

Sum(
  Filter(
    Descendants([Issue].CurrentMember,[Issue].[Issue]),
    [Issue].CurrentMember.Name MATCHES "(?i).*plant.*"
  ),
  [Measures].[Issues created]
)

Kindly,
Ilze