Help

Save the date! Join us on October 16 for our Product Ops launch event. Register here.

Re: Best way to list Jira epics with sum of story points from attached tickets?

1837 0
cancel
Showing results for 
Search instead for 
Did you mean: 
mike2
4 - Data Explorer
4 - Data Explorer

I have a Jira Cloud instance with the typical Epic -> Story structure. I'm wanting to pull those epics into Airtable with a link to their associated issues and rollup their story point total. 

Example:

DEV-1 (Epic) Make a sandwich
DEV-2 (Story) Get Ingredentiants - 5pts
DEV-3 (Story) Assemble - 3pts
DEV-4 (Story) Eat - 1pt


How can I sync this data from Jira and assemble the proper links so I can reference DEV-1 and rollup the estimates to get 9 story points total?

 

I've tried syncing my Jira tickets into its own table which has the Epic <-> Tickets reference information but am unable to convert that information into a 'hard link' that Airtable can use. See screenshot, if I edit the 'Epic Link' field to "Link to another record" it technically works but I get a message saying my Jira Sync won't update this field anymore. 

2 Replies 2

Hmm, if I were you I'd:
1. Create a new table called "Epics"
2. Create a linked field between "Epics" and the synced table
3. Create an automation that'll trigger every time a new record gets created in the synced table, and its action will be to paste the value from the "Epic Link" field into the linked field

In the "Epics" table, you could then get the story point total via a rollup field with "SUM(values)"

bharatana
4 - Data Explorer
4 - Data Explorer

I faced the same challenge a while back. What worked for me was using JQL (Jira Query Language). You can run a query like project = XYZ AND "Epic Link" = EPIC-123 to get all the stories linked to a specific epic. Then, you can export the results to Excel and sum up the story points there.

Another thing that really helped was the jira epic template. It made organizing and summarizing epics super straightforward.

Hope this helps! Good luck with your project!