Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Sum of completed points in an Epic

Alain_Lapierre
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 30, 2024

Hello, 

I am new to formulas and Structures in general, and I am trying to put in a variable the number of closed points in an epic, but I can't seem to figure it out, I feel like I am far from the right answer, can someone help me?

What I have so far is:

with NbPtTotal = SUM#children{storypoints}:

with NbPtDone = if(Status = "Done"; StoryPoints; 0):

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
1 vote
Answer accepted
Tuncay Senturk September 1, 2024

Hi @Alain_Lapierre 

Welcome to the Community!

I am not an expert on this, could you please try this?

with NbPtTotal = SUM#children{StoryPoints}:
with NbPtDone = SUM#children{if(Status = "Done"; StoryPoints; 0)}:

 

NbPtTotal calculates the total story points in all child issues.

NbPtDone calculates the sum of story points for issues where the status is "Done."

or you can use resolution field to calculate resolved issues (whatever its final status is)

with NbPtDone = SUM#children{if(Resolution != ""; StoryPoints; 0)}:

 

Alain_Lapierre
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
September 9, 2024

Thank you very much Tuncay, I'll try that, but it makes sense to check the resolution!!!

Like Tuncay Senturk likes this
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events