Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×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!
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..........
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.