I'm trying to generate a report that lists all tickets that are left to do

Caine Smith October 15, 2019

How do I generate a simple report that shows what tickets, tasks and bugs are left to do in the current sprint and backlog? 

1 answer

0 votes
Avinash Bhagawati _Appfire_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 15, 2019

Hi @Caine Smith ,

With the help of JQL you will be able to get tickets that are left in sprint. If you looking for current sprint you can use below sample query.

project = ABC AND Sprint in openSprints() AND resolution is EMPTY 

Also if you looking for specific spirit you can directly use sprint name in JQL and these JQL can be used in gadgets for dashboards.

project = ABC AND Sprint = "Sprint 1" AND resolution is EMPTY 

Thanks

Avinash

Jack Brickey
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 15, 2019

but if you also want to include backlog as you mentioned just use

project = abc and resolution is empty

Suggest an answer

Log in or Sign up to answer