Using Structure with hierarchical data Initiative -> Epic
Goal is to aggregate the list of Epic Assignees by Initiative.
Data is correct and we have our comma separated list of epic owners by Initiative. Issue is the names are the username i.e. DoeJoe, SmithB, whereas we want the full names John Doe, Bob Smith
Any converts or format we can apply to the formula column equation?
Hi Corey,
The issue here is that assignee field is returning html (icon + text). So you would have to parse HTML output.
For that, first click on assignee variable below formula and in a drop-down select Manual Specification this will switch output to html.
And to parse it, use the following formula:
JOIN#children{SUBSTRING(assignee, SEARCH("/>[^>]+</a>/", assignee), SEARCH("</a>", assignee)-1)}
Please, let me know if it helps.
Regards,
Egor Tasa
ALM Works
Just a clarification, Corey.
I just realized, that I haven't expanded on Manual Specification piece. When you open Manual Specification, you will see:
{"id":"assignee","format":"text"}
Change it to:
{"id":"assignee","format":"html"}
Sorry for potential confusion.
Regards,
Egor Tasa
ALM Works
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.
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.