Hello,
I’m looking to get a cumulative story points resolved line that accounts for issues that move to both done statuses in our sprint. i.e., we have Prod Ready and Done. At present this only accounts for the Done staus and not Prod Ready. Is there a way to do this?
Hi @Rossmccusker,
The measure “Stroy Points resolved” and accordingly “Cumulative Story Points resolved” considers issues with resolution date, not by status (see measure description in documentation: Jira Software custom fields).
You can create a new calculated measure that shows how many issues were in the done statuses at the end of each day. For the calculation, use the measure “Story Points history” and sum up all statuses you consider done.
Sum(
--list of all Done statuses
{
[Transition Status].[Prod Ready],
[Transition Status].[Done]
},
[Measures].[Story Points history]
)
More details on calculated measures described in the documentation: Calculated measures.
Check out also the “Story points flow in sprint” report from the Demo account, where Sptry points are grouped by issue statuses over time: Story points flow in sprint - Issues - Jira Demo - eazyBI.
Best,
Zane / support@eazyBI.com