How to pull Issue's linked issue details from a different project using EazyBI

Samuel Srungarapati March 4, 2025

Hello,

I've been working with EazyBI reporting stuff.

There are issues in the project A which are linked with the issues from project B.

From project A's standpoint, I'm trying to build a report to list out all the open issues in A, along-with corresponding linked issues from project B.

 

Any help would be appreciated!

1 answer

0 votes
Pasam Venkateshwarrao
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 4, 2025

Hi @Samuel Srungarapati 

 

Please import both projects into the eazyBI and use the GetMemberByKey() function to get all the properties.

 

In Eazy Bi create a measure Linked issue by status count

Sum(
--go through all linked Bugs
Filter(
DescendantsSet([Bugs].CurrentMember,[Bugs].[Bugs]),
--check if linked Bug Priority matches selected Priority
DefaultContext((
[Measures].[Issues created],
[Issue].[Issue].GetMemberByKey(
[Bugs].CurrentMember.KEY),
[Status].CurrentHierarchy.CurrentMember
)) > 0
),
--aggregate linked Bugs ignoring the Issue Priority
([Measures].[Issues created],
[Status].CurrentHierarchy.DefaultMember)
)

 

Screenshot 2025-03-04 at 4.58.51 PM.png

 

 

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events