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,557,562
Community Members
 
Community Events
184
Community Groups

Access on certain member eazyBI

Hey,

I need access on a certain member called "GoLive" and it´s due date. I have customized my own due date called "Fälligkeitsdatum". When I´m able to get Fälligkeitsdatum (due date) I want to display it elsewhere. Can someone help me further? Thanks!

2 answers

0 votes
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 ,

The eazyBI app does not import the issue Summary as a separate field by default.
Therefore, the property/measure "Issue Summary" is specific to your instance.

Generally, issues have their summary and the key returned for the property .Name

That might cause trouble for the direct comparison against the project name.

You might use the MATCHES operator for regular expression comparison of issue summary against a keyword - the name of Project calculated member.

That might be construction like this.

CASE WHEN
[Issue].CurrentHierarchyMember.Name
MATCHES
".*GoLive$"
THEN
[Measures].[Fälligkeitsdatum]
END

 

or for the second option

CASE WHEN
[Issue].CurrentHierarchyMember.Name
MATCHES
".*"||[Project].CurrentHierarchyMember.Name||".*"
THEN
[Measures].[TerminGoLive]
END

If this does not work for you, please get in touch with us directly over e-mail with more details about your eazyBI setup and, preferably, also the report definition.

 

Regards,

Oskars / support@eazyBI.com

Hey @Oskars Laganovskis ,

The first option has worked but it is display in the row of the issue called GoLive. But how to get it in the row of project name? I have tried it in the following way but it doesn´t work:

CASE
WHEN
[Issue].CurrentHierarchyMember.Name = [Project].CurrentHierarchyMember.Name
THEN..........Screenshot 2023-04-14 134120.png

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 14, 2023

Hi @Onur Cevik ,

Do I understand correctly that you want to display the Fälligkeitsdatum on the Project level where the actual date is taken from an issue within the project, and the specific issue has "GoLive" in its summary?

It is possible. However, the primary expression needs to handle the various edge cases, and the conditions might depend on the whole report context and your system setup.

The following points need to be considered for the expression:

1) does every project have a specific issue for GoLive? What to do if the issue is not present in the project?

2) could there be several GoLive issues within the project? How to distinguish which one is relevant? What if multiple issues comply with all conditions?

3) What dimensions and dimension hierarchies are used in report pages and rows? How do these extra dimensions relate to report entries? Which dimensions should be ignored?

 

If I got your idea correctly, the primary expression is as follows.

(Filter(
DescendantsSet(
[Issue].CurrentHierarchyMember,
[Issue].[Issue]),
[Issue].CurrentHierarchyMember.Name MATCHES ".*GoLive$"
).Item(0),
[Measures].[Fälligkeitsdatum]
)

However, this might not return the expected result in some edge cases or might not work at all in certain report contexts.

Therefore, I suggest contacting us directly over e-mail with full details about your Jira setup and policies, report requirements, and report progress so far.

Oskars / support@eazyBI.com

Like Onur Cevik likes this

In the first picture you see that I want to get Fälligkeitsdatum (due date) of the member GoLive.

In the second picture I try to display Fälligkeitsdatum of the calculated member TemrinGoLive in the row of the project. But it doesn´t work.

Screenshot 2023-04-13 152028.pngScreenshot 2023-04-13 152056.png

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