Create a Target Fix Version/s report from JIra

We have created a new filed that is called Target Fix Version/s, and we need to create a report that display Target Fix Version/s either for all releases or specific one, can some one help to get this done?
Thank you in advance.
Cheers

Hi @Grande,

You can try creating a new calculated measure to see all the “Target Fix Versions” in issues under a Fix Version member. The formula could look similar to the one below:

Generate(
  Filter(
    [Target Release].[Target Release].Members,
    [Target Release].[Target Release].CurrentMember.Name <> '(none)'
    AND
    [Measures].[Issues created] > 0
  ),
  [Target Release].[Target Release].CurrentMember.Name, ', '
)

See the picture of a sample report below:

Visit the eazyBI documentation page for more information on the Generate() function - https://docs.eazybi.com/eazybi/analyze-and-visualize/calculated-measures-and-members/mdx-function-reference/generate.

Best,
Roberts // support@eazybi.com