Adding the URL property to the issues cube?

Hi!

There is a formatting option Markdown, that allows creating clickable URLs.

For example, if you want to show the issue link in the report as a clickable URL, you can define a new calculated measure “Issue link” in Measures, and change the formatting to Markdown. The expression for constructing the issue URL might be like this:

 CASE WHEN [Issue].CurrentHierarchyMember <> [Issue].CurrentHierarchy.DefaultMember
 THEN
 "[go to Jira "||[Issue].CurrentHierarchyMember.Key||"]("||
 "https://YourJiraDomain.atlassian.net/browse/"||
 [Issue].CurrentHierarchyMember.Key||")"
 END

More information about markdown and custom formatting options can also be found here: Measure formatting (markdown and custom)

Kindly,
Ilze