Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jira Structure: Subtract from a SUM in Formula columns

Diana
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.
September 13, 2023

I'm trying to create a Formula column that will read the item's story points, but if it's a parent Feature, don't include the Feature's story points. In the screenshot, I want the Story to read as "4" and its parent Feature to read as "4" not "5" because the Feature was assigned to "1" story point.

Reason why the feature was assigned a story point was during estimate/planning until we actually write the stories. (This is just an example, since we don't actually use "4" as a story point value.)

And since I have to export this for a report, and there are a lot of features with estimate sp, I'd rather have a formula column that excludes feature's sp so I don't have to clean up 100+ features.

subtract-feature-sp.png

How do I write the Formula column so that it takes the SUM of children story points, but then also subtract the parent's story points?

1 answer

1 accepted

0 votes
Answer accepted
Diana
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.
September 18, 2023

Figured it out.

IF (issuetype = "Feature", 0, storypoints)

then select 'Sum over sub-items'

Suggest an answer

Log in or Sign up to answer