Count of Rejected/Abandoned issues from the count of committed stories

Hi
Is there anyway I can create a measure that give the count of Rejected/Abandoned issues from the count of committed stories.
Thanks

Hi @Manesh

You could explore calculated measures with tuples.

In this case, I believe you can calculate the expected results with the following tuple:

(
[Measures].[Sprint issues committed],
[Transition Status].[Rejected/Abandoned]
)

or

(
[Measures].[Sprint issues committed],
[Transition Status].[Rejected]
)
+
(
[Measures].[Sprint issues committed],
[Transition Status].[Abandoned]
)

If these are two separate statuses

Martins / eazyBI

Thank you - for some reason, I am seeing some rejected stories, which were added after the sprint start (only a couple though)