Sum story points for a sets of issues according to their status

Adrien Naudet August 22, 2013

Hello,

I Try to build a new measure to sum story points for all issues in particular status but without any success.

Here is my code :

Sum(
  {[Status].[Status].[To Deliver], 
    [Status].[Status].[To do - Test], 
    [Status].[Status].[In progress - Test],
    [Status].[Status].[Resolved]},
  [Measures].[Issue Story Points]
  )

Can anybody help me to make it works ?

Thx in advance.

Best regards,

1 answer

1 accepted

0 votes
Answer accepted
Raimonds Simanovskis
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 27, 2013

You need to use the following calculated measure formula:

Sum(
  {[Status].[To Deliver], 
  [Status].[To do - Test], 
  [Status].[In progress - Test],
  [Status].[Resolved]},
  [Measures].[Story Points created]
)

"Issue Story Points" measure is for displaying individual story points for Issue dimension detailed members (detailed issues). "Story Points created" will show the total sum of story points.

Adrien Naudet September 1, 2013

Thx for your answer Raymond,

With this formula, I can mesure the sum of story points.

I tried to use this formula to build a new burn down chart, but it didn't work well. It does not detect when the issue enter to this set of statys and focus on the actual issue status. So I used the closed definition in the import configuration to add theses new closed status. It woks well like this. Tell me if it is appropriate to do like that or if there is a better way.

Best regards,

Adrien

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events