How to find issues added to active sprint in JIRA?

beam022 picture beam022 · Feb 28, 2013 · Viewed 15.3k times · Source

We use corkboard with printed Agile Cards. I would like to be able to create filter in JIRA's Issue Navigator to find issues that were added to the active sprint in the last 24 hours, last 2 days, etc. That way I wouldn't have to manually select new issues for printing everyday.

I've tried to write JQL query for this, but I only got this far:

project = "Our Project"
AND sprint = 1002
AND (created >= -1d OR (updated >= -1d AND status WAS Open BEFORE -1d))

This is not satisfying because:

  1. Sprint id isn't automatically selected (activeSprint() or something similar).
  2. Query doesn't actually answer my question.

Answer

rcourtna picture rcourtna · Mar 11, 2014

You can find issues in the current open sprint with the JQL clause:

sprint in openSprints()