A measure for how many storypoints are in a specific state at the closing of a sprint

Hi! I am making reports of my sprints. Some cards are not closed at the end of the sprint and I like to now in which status they are in. I need to now how many points are in status : In Test.

I use this measure to one see which caterory the story points are in, Is there a possibility to see how many points are in a specific issue status by closing the sprint?

(
[Measures].[Sprint Story Points at closing],
[Transition Status.Category].[In Progress]
)

Kind regards,

Reinier

Hi @RHAG

You might want to try creating a new user-defined calculated measure using this formula:

(
[Measures].[Sprint Story Points at closing],
[Transition Status].[In Test]
)

That should calculate the amount sprint story points from issues that were in “IN Test” status at sprint completion date.

Martins / eazyBI support

1 Like

Thanks, that was what I was searching for!

1 Like