I'm looking to see if there is a way to constantly query on the last sprint so that I could put it in a dashboard with some of the gadgets.
Hi,
There is currently no way to just get the stories/issues from recently closed or last sprint.
Since there is no JQL function such as sprint in lastSprint(), so you'd have to manually change the JQL filter each time.
There's an open request for this feature, you can also vote on it: https://jira.atlassian.com/browse/JSWSERVER-12432
Hello ... Does anyone know if there is an equivalent issue for CLOUD Jira?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
can you help to find the issues of current month based on shift wise(6am to 3pm).???
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would vote for this as well for Cloud, I need a filter for previous sprint and can't get to it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can add this to your JQL query, where the resolved days is the length of your sprint (in this case, 14 days for a 2-week sprint), to limit the results to the recently closed sprint:
Sprint in closedSprints() AND resolved >= -14d
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.
While not always providing perfect results for the recently closed sprint, the following may help. Where this can fail is if issues were closed during the sprint timeframe that were not in the sprint (e.g. in a clean-up of old issues)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,I had the same issue, a lot of queries to Dashboards needing last Sprint, then once there is no way without programing, I created a program in Python that can access Jira and change the Sprint to another new Sprint on filters.
Tre process just seek Filters that has the condition "Sprint in ({Selected Sprint])" and changes to "Sprint in ({New Sprint]).
I can share this module if you want.
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.