0
votes

I need to export all issues from Sprint 25-50. I couldn't find any filter in JIRA to do that.

Which JQL (jira query language)query I can write to do this?

Reference: https://confluence.atlassian.com/jiracore/blog/2015/07/search-jira-like-a-boss-with-jql

1

1 Answers

0
votes

You can use a similar JQL as mentioned below:

project = YOUR_PROJECT_NAME and cf[11901] in("Sprint 25-50")

cf[11901] is a custom field name for Sprint, so the custom field name might be different to your JIRA instance. But you should be able to get the custom field name while typing Sprint in JQL query search box(note that your Admin should have enabled "JQL Auto-complete" feature ON).