how can i write the jql filter to search the backlog issues
Hi @Puneeth BS Welcome to Atlassian Community !!
project = ABC AND Sprint not in openSprints() AND Sprint not in closedSprints() AND Sprint not in futureSprints()
This query will return issues which are not included in any sprints of that project
Below query worked for me:
(project = sample
AND Sprint = empty)
OR
(project = sample
AND Sprint in (closedSprints())
AND Sprint not in (openSprints(), futureSprints()))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Puneeth BS , follow this JQL query:
This query will give you the result of issues in the backlog.
Hope this helps you :) @Puneeth BS ,
Thanks,
Sukruth M S
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Puneeth BS Just try with this query :
Project = ABC and status in (Backlog, Open, "To Do")
thanks ,
Rishav
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
how can I get for old months -
Example --Jan, Feb , Mar...Jun
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.