I need to build a report that, among other things, needs to show the following items:
I have to imagine this is completely possible and I'm just an idiot who hasn't been able to figure it out, but I feel like I've tried everything, and it's like the columns aren't associated to the fields in the boards, sprints, or stories.
This is all I want:
Thanks in advance!
Michael
We are on JIRA 8.1+ and now it is possible to use properties of sprint.
sprint.endDate
will give you the end date.
Hi Michael,
It is not yet possible to find exactly the last sprint, using Structure, but it may become possible in the future, when we introduce array handling in formulas. And Sprint start and end dates are not available either, but may become available later. In the meantime, you can use ScriptRunner (or similar app) to create custom scriptable fields that would retrieve sprint dates. Here are a couple of examples:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def sprintCf = customFieldManager.getCustomFieldObjectByName("Sprint")
return issue.getCustomFieldValue(sprintCf)?.startDate?.first()?.toDate()
And
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def sprintCf = customFieldManager.getCustomFieldObjectByName("Sprint")
return issue.getCustomFieldValue(sprintCf)?.endDate?.first()?.toDate()
Regards,
Egor
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.