Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,439
Community Members
 
Community Events
184
Community Groups

Accress to project name in eazyBI

Hey,

Could someone tell me how to get the project name? I have a calculated member and try to get the project name. The dimension Issue and Measures existingScreenshot 2023-04-13 112350.png

1 answer

1 vote
Oskars Laganovskis
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.
Apr 13, 2023

Hi @Onur Cevik ,

There are multiple options for using Issues and Project dimensions, and they might impact the result.

The user might select nothing, a project, or component and all issues, a specific issue, or a project from the Issue dimension.

You might try the following expression covering the majority of use cases.

 

CASE 
--when no project selected on page filter
WHEN
[Project].CurrentMember.Level.Name = "(All)"
THEN
CASE
WHEN
--specific project displayed in issue dimension
[Issue].CurrentHierarchyMember.Level.Name = "Project"
THEN
[Issue].CurrentHierarchyMember.Name
WHEN
--when "All issues" member displayed - take the Project dimension selection
[Issue].CurrentHierarchyMember.Level.Name = "(All)"
THEN
[Project].CurrentHierarchyMember.Name
ELSE
--when specific issue or epic displayed - find its project
Ancestor(
[Issue].CurrentHierarchyMember,
[Issue].CurrentHierarchy.Levels("Project")).Name
END
--when specific project or component selected - take its project name
--unless specific project applies from Issue dimension
ELSE
CASE
WHEN
--specific project displayed in issue dimension
[Issue].CurrentHierarchyMember.Level.Name = "Project"
THEN
[Issue].CurrentHierarchyMember.Name
WHEN
--when "All issues" member displayed - take the Project dimension selection
[Issue].CurrentHierarchyMember.Level.Name = "(All)"
THEN
Ancestor(
[Project].CurrentHierarchyMember,
[Project].CurrentHierarchy.Levels("Project")).Name
ELSE
--when specific issue or epic displayed - find its project
Ancestor(
[Issue].CurrentHierarchyMember,
[Issue].CurrentHierarchy.Levels("Project")).Name
END
END

 

Regards,

Oskars / eazyBI support

Suggest an answer

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

Atlassian Community Events