Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
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

Need help with Structure for Jira Expr advanced expression

I am using Structure for Jira.  I have defined a hierarchy of Jira issues using "contains" issue links (parent "contains" child).  I want to define an Expr expression to get the status of the containing "grandparent" of an issue.  I have a working expression for getting the containing "parent" of an issue:

issueLinks
.FILTER($.type = 'Objective' AND $.source = this)
.MAP($.destination.status)

However, when I try to use this approach to go up two levels instead of one level in the hierarchy, it doesn't work:

issueLinks
.FILTER($.type = 'Objective' AND $.source = this)
.MAP($.destination.issueLinks
.FILTER($.type = 'Objective' AND $.source = this)
.MAP($.destination.status) )

Does anyone know how to do what I am trying to do?  Here is the Expr Advanced Reference.

2 answers

2 accepted

3 votes
Answer accepted
Stepan Kholodov _Tempo_
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.
Nov 03, 2023

Hello @Bruce Bowers 

It is not possible - the Formula column can only access values of directly linked issues to those issues that are added to the structure. If you want to extract values from grandparents, you can do it by either:

- adding parent issues to the structure and accessing values from grandparents through parents via the issueLinks function;
- add all issues to the structure, visualize the hierarchy and extract values of grandparents using the parent{} aggregate function.

I hope this helps. Please reach out to us directly at our support portal if you need further assistance or help with anything else.

Best regards,
Stepan Kholodov
Tempo

3 votes
Answer accepted
Valerie Knapp
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Nov 03, 2023

Hi @Bruce Bowers , thanks for your question. Please consider to open a ticket directly with the vendor to ask for support - Structure by Tempo - Jira Portfolio Management & PPM | Atlassian Marketplace.

In my experience, they are usually very helpful and responsive.

Suggest an answer

Log in or Sign up to answer