Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

eazyBI : How to filter displayed linked issues based on their Label

M Amine
Community Champion
June 26, 2023

Hi,

I have a Story (US1) that is linked to 3 Tasks (T1, T2 and T3) using the same link named “RELATION”. T1 has a label “ALPHA”, T2 has an empty label and T3 has label “BETA”. I am able to display the story and its linked three tasks in an eazyBI report without any problem.

Now I want to filter displayed tasks and show only tasks that have either an empty label or label “BETA”.

While i can find the dimension related to the issue link “RELATION”, i have found no mean to get into the attributes of the tasks in order to filter the tasks based on my criteria.

an idea?

1 answer

0 votes
elita_kalane
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 29, 2023

Hello @M Amine 

It seems that you had already reached out to us directly. I am pasting the solution here as well, in case other eazyBI users have a similar use case

Count(
  Filter(
    [RELATION].[RELATION].GetMembersByKeys([Issue].CurrentMember.Get('RELATION')),
    CoalesceEmpty([RELATION].CurrentMember.Get('Labels'),"") matches ".*BETA.*" OR
    IsEmpty([RELATION].CurrentMember.Get('Labels')) AND
[Measures].[Issues created] >0
  )
)


Best wishes,

Elita from support@eazybi.com

Suggest an answer

Log in or Sign up to answer