How to make dynamic links clickable in eazyBI reports?

I’m trying to generate dynamic links in my eazyBI reports. I use an MDX formula to create Jira URLs, but by default, the links are not clickable in the report. I would like to know if there’s a way to make these links clickable directly in the eazyBI interface, or if there is any specific setting that needs to be done to make eazyBI recognize and treat the URLs as clickable links.

Here’s the MDX code I’m using:
Generate(
Filter(
[Bloqueia].[Bloqueia].Members,
[Measures].[Issue created] > 0
AND [Bloqueia].CurrentMember.Name <> “(none)”
AND [Bloqueia].CurrentMember.Name <> “All Bloqueia”
),
“a href='https://seu-jira.com/browse/” || [Bloqueia].CurrentMember.Name || “’ target=‘_blank’>” || [Bloqueia].CurrentMember.Name || “a”,
", "
)

The links are showing correctly, but they are not clickable
Generate(
Filter(
[Bloqueia].[Bloqueia].Members,
[Measures].[Issue created] > 0
AND [Bloqueia].Currentmember.Name <> “(none)”
AND [Bloqueia].CurrentMember.Name <> “All Bloqueia”
),
[Bloqueia].CurrentMember.Name,
", "
)

I’ve tried generating the URLs in the format https://seu-jira.com/browse/, but they are not being treated as clickable links.

Has anyone encountered this issue and found a solution? Any help would be much appreciated!

Thanks!

try something like this:

@Estevao_Moura

1 Like

It successfully made the issue key a clickable link, but I couldn’t get the linked items to be clickable. However, it worked—thank you!