Sample JQL
project in ("Test") and type= story and duedate >= "2024/01/01" and status not in (Remove)) and assignee= John
project in (Test) and issueType in (story, bug) and duedate >= "2024/01/01" and status not in (your expected status) and assignee = John
Please note
If something has space in it, it has to be encoded with " "
E.g : "Test Project"
If it's a single word, it doesn't need to be encoded
E.g : Test
Check the due dates are in future
And status is from the defined list of values
Hi Sachin - Welcome to the Atlassian Community!
Use this: issuetype in (Story, Bug)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sachin_Argade -- Welcome to the Atlassian Community!
Adding to John's answer...
Here is some free training and documentation from Atlassian to learn how to make such queries in the future:
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.