Hi, we have a structure that looks like the following:
- XProject Tickets
- XCapability Tickets
- Epics
Under each XProject Ticket we have at least 3 XCapability tickets, 1 (or more) for FE, 1 (or more) for BE, 1 (or More) for Architecture. The capabilities are assigned "Team's responsible" are denoted with a team name in Custom Field 25396.
What I am eventually trying to get to is a formula column, that only shows on the XProject rows that shows the current Architecture status of that project.
What I think I need to do in this formula is the following, but I'm getting stuck:
I decided to start by seeing if I could just access the customfield in the children and return "Arch Found" or "Arch Not Found" as a first step. And not even this step is working. (Note I haven't even looked into it only showing on
WITH archissues = issueLinks.FILTER($.customfield_25396 = "ABC Architecture"):
IF archissues.SIZE() > 0: "Arch Found"
ELSE: "Arch Not Found"
Any help would be appreciated!
Actually, I was able to solve this with one of the "related" issues that popped up on my post that I couldn't find searching!
IF (Issuetype = "XProject",MIN#children{Arch_Status})
And then defining Arch_Status as:
IF JQL {issuetype=XCapability AND cf[25396]="ABC Architecture"}: status
Is there a good way to get these to show up on the structure as actual status boxes instead of plain text?
Was able to get some colors in using panels, and chose the colors to match our current status colors, but would be nice if I could just pull the currently assigned status format from the ticket somehow!
WITH addBackground(value) =
IF(
value = "Open"; """{panel:bgColor=#42536E|borderWidth=0px}{color:white}*$value*{color}{panel}""";
value = "In Definition"; """{panel:bgColor=#DEE1E5|borderWidth=0px}{color:42536E}*$value*{color}{panel}""";
value = "Ready to Start"; """{panel:bgColor=#DDECFF|borderWidth=0px}{color:0847A6}*$value*{color}{panel}""";
value = "In Progress"; """{panel:bgColor=#DDECFF|borderWidth=0px}{color:0847A6}*$value*{color}{panel}""";
value = "Ready for Validation"; """{panel:bgColor=#DDECFF|borderWidth=0px}{color:0847A6}*$value*{color}{panel}""";
value = "Validation"; """{panel:bgColor=#DDECFF|borderWidth=0px}{color:0847A6}*$value*{color}{panel}""";
value = "Accepted"; """{panel:bgColor=#E3FCEF|borderWidth=0px}{color:006644}*$value*{color}{panel}"""
):
IF JQL {issuetype=XCapability AND cf[25396]="ABC Architecture"}:
addBackground(status)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Good stuff, @Justin Siegal 👍 You may be interested to learn there is a Structure Bootcamp happening soon. See the last row in the August event round up here on the community.
It seems like the 2nd and 3rd sessions will be of particular interest to you.
Best,
-dave
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.