Hi,
I want to display if an epic from structures has still open sub items, but without bringing the epic sub items in the structure itself.
Hello @Costin Calisov ,
You can use the epicStories item property reference combined with FILTER() to display a list of the issues under the Epic that are still open. If you would prefer a count of the issues you can add SIZE() to the end of it.
epicStories.FILTER($.statuscategory != "DONE")
epicStories.FILTER($.statuscategory != "DONE").SIZE()
Hope this helps.
Best,
David
It almost work ,
I have to change it with
epicStories.FILTER($.status != "DONE")
somehow it does not see the statusCategory,
but it does the job, ty a lot
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi David,
we moved to Structures (Cloud), and epicStories item property is not available here. Is there another way, cloud version specific to accomplish the same thing?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hello @Constantin Calisov
at this time, it's not possible - the Formula in Structure Cloud can't yet extract values of child issues. We have plans to implement such a function in the future.
Right now, you can either:
- extract values from parent issues using the parent function;
- extract either parent or child values when both issues are added to the structure, and they appear as a hierarchy. Then you can extract any field value using either the parent{} aggregate function or any other.
If you need assistance with 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.
Would be a nice feature, I'm looking forward for it. Thank you for quick answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.