Within the issue query window, is it possible to display issues that were in a sprint but not completed?
You can see a distinction between what was and wasn't completed within a sprint report (in Greenhopper), but I was wondering whether there is a way to get hold of this distinction in JQL?
The reason I required the JQL to do this, was to feed the results back to my project pages with Confluence via the JIRA Issues Macro.
Instead, I am just linking to the relevant Sprint Report in Greenhopper now (from Confluence), as this gives me the information I need.
We have the same issue as mentioned above by Steve, down to the need to report in Confluence. What is needed is jql function similar to 'earliestunreleasedversion()' for sprints.
Something like 'earliestopensprints()' would work (following suit from the currently available opensprints() function). Will check jira.atlassian.com and see if there is a feature request for this and vote it up :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sure enough there was one: https://jira.atlassian.com/browse/GHS-5773.
And good news is it seems to be coming in 6 months. Nice!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi there,
If you are able to get hold of the sprint number that the issues are in, you can actually run the JQL something like the one shown below to get the results you required.
project = TEST AND sprint = 2 AND status != Closed
The sprint number can be viewed from the issue viewing screen under the Agile Tab, highlight the link of the Sprint name and you will noticed something like the address below:
http://localhost:8528/secure/GHGoToBoard.jspa?sprintId=2
So for this case, the ID will be 2.
Hope this helps :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The JQL you suggest would work at the moment, however if I was to look back at the project (in a number of months) the JQL would be inaccurate as the issues may well be closed now, but not have been closed during that sprint.
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.