The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JQL request for day 2 of sprint in Structure formula column

Mikolaj Umiastowski
May 29, 2024

Is it possible in a formula column to build a jql that displays something based on the status of a Story on day 2 of sprint. 
I have this, and it works : 

 

IF JQL {status CHANGED TO 'Deployed' ON '2024/05/21' AND status = 'Deployed'}: "(/)" ELSE IF JQL {status WAS 'In Progress' ON '2024/05/21'}: "(*g)"


But I'd rather not have a fixed date but something like (pseudo-code) : 

status WAS 'In Progress' ON 'day 2 of the sprint'

So that I don't have to change the formula for each new sprint. 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Stepan Kholodov
Community Champion
May 30, 2024

Hello  @Mikolaj Umiastowski 

If the issue only has one sprint assigned to it, you can use this formula:

if historical_value(this, "status", date_add(sprint.startdate, 2, "day")) = "In progress": "(*g)"

I hope this helps. If you need further assistance of have other questions about Structure, please reach out to us directly at our support portal.

Best regards,
Stepan
Tempo (the Structure app vendor)

Mikolaj Umiastowski
May 30, 2024

Thanks, it helped a lot !
I finally did that : 


with FORMAT_CAPTION(color,offset1) = (
with SPACE(pixels) = """!https://upload.wikimedia.org/wikipedia/commons/5/52/Spacer.gif|width=$pixels!""":
"""{panel:borderStyle=solid|borderColor=white|bgColor=$color}${SPACE(offset1)}{panel}"""
):
IF issuetype = "Story" OR issuetype = "Bug" OR issuetype = "Task" OR issuetype = "Sub-task" OR issuetype = "Epic":
IF DATE_ADD(sprintstartdate, 19, "day") = TRUNCATE_TIME(LatestDone):
"(/)"
ELSE IF historical_value(this, "status", date_add(sprintstartdate, 19, "day")) = "In Progress" AND DATE_ADD(sprintstartdate, 19, "day") < now():
"""{color:#0000FF}${REPEAT("■", 1)}{color}"""

Like Stepan Kholodov likes this
Mikolaj Umiastowski
May 30, 2024

where sprintstartdate is defined in a formula so that I can update it

Mikolaj Umiastowski
May 30, 2024

you can see final result : structure-seg.pngnt