Forums

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

Jira filter: scheduled issues (not issues who are created from an sheduled issue)

Martin Weidig February 3, 2022

Hello community,

 

i am looking for a filter / JQL to list all scheduled issues over all projects. Please note, that i do not look for a filter of all created issues!

Thx

1 answer

0 votes
Sachin Dhamale
Community Champion
February 4, 2022

Hi @Martin Weidig

You can search the schedule issue by due dates. The issues which due date field is non empty this issues are schedule issue.

JQL - duedate is not EMPTY

JQL for due - https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-fields/

Example:

  • Find all issues due before 31st December 2010:
    due < "2010/12/31"
  • Find all issues due on or before 31st December 2010:
    due <= "2011/01/01"
  • Find all issues due tomorrow:
    due = "1d"
  • Find all issues due in January 2011:
    due >= "2011/01/01" and due <= "2011/01/31"
  • Find all issues due on 15 January 2011:
    due = "2011/01/15"

 

Please Accept the answer if you find it helpful

Suggest an answer

Log in or Sign up to answer