Hi there -
Our Jira instance currently uses a custom field “Story Points (Custom)” as our estimation measure on our Jira issues.
I’m trying to create some simple reports to display:
-
Sprint Story Points (Custom) committed
-
Sprint Story Points (Custom) completed
I see that Sprint Story Points committed & Story Points completed & Sprint Story Points at Closing reference “Story Points added”, so I believe I should be creating a new custom metric for “Story Points (Custom) added”, but I am uncertain of how to do this. From there I believe I can use the Story Points (Custom) added to recreate the other formulas, but I am confused as to how to replicate “Story points added” for my Story Points (Custom) field.
Is there MDX you can share for Story Points Added that I can modify to reference our Story Points (Custom) field? I am unable to find any references to that in the documentation.
Your help is greatly appreciated!! Thank you
Formula references below:
[Measures].[Sprint Story Points committed] =
( [Measures].[Story Points added],
[Transition Field].[Sprint status],
[Sprint Status].[Active],
– An issue was in a sprint at a sprint start time
[Issue Sprint Status Change].[Future => Active]
)
[Measures].[Sprint Story Points completed] =
(
[Measures].[Sprint Story Points at closing],
[Transition Status.Category].[Done]
)