I want a formula to display at Epic level all a rolled up view of all the "component/s" identified in child issues (e.g., Features/Stories) or linked issues (via a specific type of linking - "delivers".
So that at Feature level - I can see a rolled up view of all component/s from linked Stories - and at Epic level - I can see a rolled up view of all the components from child Stories and Features).
N.B. - Our Jira issue hierarchy is as follows (e.g., Child > Parent) = Story > Feature > Epic
Hi Nyssa! Thank you for the question. In this case, to pull values from children to parent levels, you can use an aggregation function with modifiers. For example:
VALUES#children{component}
Here "VALUES" is a function that by default produces an array of all distinct values for the item and its sub-items. "#children" is a modifier that changes the function behavior so it only processes direct children of the current row. And "{component}" is a field value that is aggregated.
How do I get VALUES#children{CustomField1, CustomField2, CustomField3}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Antara Sharma
You can try a formula like this: values#children{concat(field1,field2,field3)}
You can add separators between the values too if you want.
I hope this helps. If you need further assistance or have other questions about Structure, please reach out to us directly at our support portal.
Best regards,
Stepan
Tempo (the Structure app vendor)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Stepan for the quick response, When I make changes to the formula
IF (JQL{type=Epic},VALUES#children{CONCAT(' ID = ',field1,' Status = ',field2 )})
The final output is
ID = Status = , ID = <IssueKey> Status = On Hold
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.