Forums

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

Exporting a list of all issues in several epics

Ella_Pestine
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!
January 14, 2020

I'm trying to make a list of issues within several epics based on the label given to the epic. What is the best way to export a list of all issues in epics where label = x?

3 answers

3 accepted

4 votes
Answer accepted
Jack Nolddor _Sweet Bananas_
Atlassian Partner
January 14, 2020

Hi Ella_Pestine,

Sadly you cannot achieve the desired search using standard features on Jira, you must go for a third-party app instead. Using i.e. JQL Booster Pack you can type the following:

 

Search for all issues in Epics with an specific label

issue IN issuesInEpics("type = Epic AND labels = X")

 

Using this app you can also query other issues relations, check:

 

References:

 

Once you create a filter using the provided search you can export the results in differents format, please check Searching for issues page for further information about how to export the filter results into a file (CSV, XML, PDF,...).

 

Hope this helps you to create awesome queries <3

Kind regards

1 vote
Answer accepted
Muhammad Ramzan(Atlassian Certified Master)
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.
January 14, 2020

@Ella_Pestine , unfortunately to do that you need a third party plugin. I used Scriptrunner & JQL Search Extensions for Jira & reports 

 

 

If you use JQL Search Extensions for Jira & reports , following query will get your required results.

issue in allIssuesInEpic("labels='mylabel'")

Results: It will get all epics and their issues who have the label "mylabel" if you want filter further you can add issuetype to get on specific issues.

0 votes
Answer accepted
Pete Singleton
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.
January 14, 2020

You will need a plugin (e.g ScriptRunner) which allows you to execute sub-queries in JQL.

Suggest an answer

Log in or Sign up to answer