How to have Issue Summary without Key as a measure in EazyBI?

I am creating a calculated member of one of my Reports and it has some conditions.

I want to have issues having exact text in the issue Summary. But it Issue Summary ,I want to use the text only not the issue key.

Filter(
Descendants([Issue].CurrentHierarchyMember, [Issue].[Issue]),
NOT isEmpty( [Issue].CurrentHierarchyMember.get(‘Assessment’))
and [Value Stream name].CurrentMember.Name = [Issue].[Issue].GetMemberByKey([Issue].CurrentHierarchyMember.get(‘Assessment’))
.get(‘Summary’)
and [Risk Subcategory].CurrentMember.Name = [Issue].CurrentHierarchyMember.get(‘Risk Subcategory’)

)

Here Assessment in a Linked Issue Member

Hi,
Please find how to hide the key from Jira issue display names:

The alternative way would be defining a new calculated custom field using a Javascript in advanced settings and then import it as a property (without key) for each issue and later use with “Issue” dimension members at issue level.

Martins / eazyBI team