Hi I'm trying to construct a search that would tell me , how many story points have been completed since June 1 of this year?
project = 10611 AND ("Team (Schw)" = MCcc AND issuetype = Story AND status = Done AND createdDate >= 06/01/2019 .... AND SUM THE POINTS....
Hello @Mike Sebastian
Out of the box it's not possible to automatically return the sum of story points but if you have a paid plugin like Script runner, then you can do it like this
project = MAD and createdDate > startOfWeek() and "Story Points" is not empty and issueFunction in aggregateExpression("Total story points", "StoryPoints .sum()")
This query will return sum of story points of all issues of project MAD, created this week and which have the field story points.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mike,
your question jumped out at me because I've tried to sum up points in the past. Unfortunately , per Atlassian, there isn't currently a way to do this in Jira.
See related question: https://community.atlassian.com/t5/Jira-questions/Total-points-per-label/qaq-p/1090466
When I need to sum up points or hours, I typically run a JQL then export the results to an XLS and doing a sum there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yep -- that occurred to me as well. That's what I'm doing. Thank you Allison!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
For this case you can just use JQL for all issue, what resolved 1 June, something like:
resolved >= 2019-06-01 AND resolved <= 2019-06-02 ORDER BY priority DESC, updated DESC
After that SUM Story points in this issue manually.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Excellent -- thank you! I wasn't sure about the date format; so it's YYYY-MM-DD -- right?
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.