How to display fix version of each issue in a cloum

Hi,

This behavior seems related to the way how the Issue Fix version is calculated. Perhaps you have the formula like this in the calculation of the Issue Fix version:

Generate(
  Filter([Fix Version].[Version].Members,
   [Measures].[Issues created]>0
  ),
  [Fix Version].CurrentHierarchyMember.Name,
  ","
)

Note that this formula contains the condition on the Issues created measure which works fine with many of the standard dimension from the eazyBI data model. But you may check that the measure does not work with the Logged by dimension, which means the values of the Issues created measure is available only for the top level member of the dimension. The Original estimate hours measure works the same way:

You can adjust the formula of the Issue Fix version to ignore the Logged by dimension selection:

Generate(
  Filter([Fix Version].[Version].Members,
   ([Measures].[Issues created],
   [Logged by].DefaultMember)>0
  ),
  [Fix Version].CurrentHierarchyMember.Name,
  ","
)

This formula should also work with the Logged by dimension selection:

Kindly,
Janis, eazyBI support