How can i search the backlog issue from jql

Puneeth BS February 17, 2022

how can i write the jql filter to search the backlog issues

4 answers

1 accepted

1 vote
Answer accepted
Vishwas
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 17, 2022

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

1 vote
Alejandro Poupard February 24, 2023

Below query worked for me:

(project = sample
AND Sprint = empty)
OR
(project = sample
AND Sprint in (closedSprints())
AND Sprint not in (openSprints(), futureSprints()))

 

0 votes
Sukruth M S
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 17, 2022

Hi @Puneeth BS , follow this JQL query:

JQL_BACKLOG.png

This query will give you the result of issues in the backlog.

Hope this helps you :) @Puneeth BS ,

Thanks,

Sukruth M S

0 votes
RISHAV KUMAR GUPTA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 17, 2022

Hi @Puneeth BS Just try with this query :

Project = ABC and status in (Backlog, Open, "To Do")

thanks ,

Rishav

Om Singh June 27, 2022

how can I get for old months -

Example --Jan, Feb , Mar...Jun

Suggest an answer

Log in or Sign up to answer