Modifying "Sprint Story Points completed" to only sum "Accepted" Issues

The Sprint Story Points completed calculation listed below sums all story points for issues in “Done” Status Catagory

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

My projects would like to modify this calculation to only sum story points for issues that have been “Accepted” and ignore those whose status is only “Done”. Is there somewhere I can modify what is counted in the “Sprint Story Points completed” calculation?

Hi @jeffscudder

Try this formula in your calculated measure:

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

That should calculate sprint story points at closing only in Accepted status.

Martins / eazyBI.