Column in Components for releases

Hallo,

How can I add column components in report for Jira Releases?

Thanks in Advance!

eazyBI imports Components in the project dimension on a separate level. You can consider using Project dimension in Columns on Component Level to see a count of issues with a particular component.

If you would like to see a list of all impacted components as a list of values in one cell, you can use this calculated measure:

Generate(
  -- iterate through all components
  Filter(
    [Project].[Component].Members,
    [Measures].[Issues created] > 0),
  -- retun a list of issue related components separated by comma
  [Project].CurrentMember.Name,
  ', ')

from this community topic:

Daina / support@eazybi.com