EazyBI - how to display all labels assigned to the issue

Macin Ma January 24, 2018

I have label imported as dimension, but would like to display as a column all the labels set for the issues. Anyone?

The reason for that is that I have issues aggregated by type, and would like to display all labels against such aggregation, the problem is that subtasks do are not assigne any lables, only stories

 

Tried this but no luck

[Issue].CurrentMember.get('Labels')

1 answer

3 votes
Zane eazyBI Support
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.
January 30, 2018

Hi,

To get a list of all labels related to the issues represented by dimensions in a row, you may define a calculated measure in Measures.

In the calculation use function Filter() to get a list of all assigned labels and Generate() to return assigned labels separated by a comma. The formula may look like this:

Generate(
  -- iterates through all labels which are assigned to issues
  Filter( 
    [Label].[Label].Members,
    [Measures].[Issues created] > 0),
  [Label].CurrentMember.Name,
  ', '
)

 

Best,

Zane Baranovska / support@eazyBI.com

Akhil Jain July 20, 2018

Perfect Reply, thanks for sharing the info.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events