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

Show field value from grand parent item in Structure

Hello,

We have an item hierarchy like this:
1. Initiative
  1.1 Epic 1
    1.1.1 Feature 1
    1.1.2 Feature 2
  1.2 Epic 2

When I look at my Feature list, I need the overall priority from the Initiative shown for each feature. This is a field value on the Initiative item.

With this code, using the Formula language, I have been able to show field values from the parent of the Features, the Epic:
WITH _format(issue) = """${issue.Summary}""" :
issuelinks
.filter($.type.inward="is implemented by")
.filter($.source=this)
.MAP(_format($.destination))

But, I need to get one step higher, and reach the parent of the parent. Tried nesting the WITH statement, but I cannot get the code working...

Anybody have succeeding with something like this, or have ideas to the solution?

1 answer

1 accepted

0 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 20, 2023

Hello @Mathias H_ 

If all issues - Initiatives, Epics and Features - are added to the structure and organized in a form of a hierarchy, then you can display the Priority of a parent Initiative for each feature with this formula:

if issuetype = "feature": parent{if issuetype = "initiative" : priority}

but if only Features are present in the structure then it's not possible. You can extract a value from a linked issue without adding it to the structure, but the issueLinks Formula function can only reach to issues that are linked directly to those that are on the structure. So you would need to at least add Epics to the structure above Features - then you can extract Priorities of Initiatives for their linked Epics and display the values for Features.

I hope this helps. If you need further assistance or have other questions, please reach out to us directly at our support portal and we'll get back to you shortly.

Best regards,
Stepan Kholodov
Tempo (the Structure app vendor)

Hello @Stepan Kholodov _Tempo_ 

Thank you very much for the answer! Not the one I was hoping though ;).

I would like to keep my feature view efficient and avoid having many levels that I need to click on to open. 

I have a grouping already in the structure - representing my priority "Now", "Next", and "Later", with all my features below those.
So I really wanted to just have a column with the data from the grand parent, so the portfolio data was immediately visible without needing to also have the parent added to the tree.

But I tried your suggestion and it definitely works, even though the data is "hidden" away in a tree structure. So again, thanks for that.

 

Best regards,
Mathias

Suggest an answer

Log in or Sign up to answer