You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I would like to create a dashboard to track how many tickets have not been sized in the backlog and have not been sized in the current sprint. I am only tracking tickets and storys and once in the dashboard was asked to create a custom count query for the "story size" being empty.
Hi @Nella Juma
The JQL to find issues that do not have been sized (i.e. Story Points field has not been fulfilled) within a project — you could use the following query:
project = MP AND "Story Points[Number]" = Null
Replace MP with your Project Key
If you would like to query for multiple projects at once with the same criteria then you can use:
project in (A, B, C) AND "Story Points[Number]" = Null
You can then use these JQLs in your dashboard gadgets such as the Filter Results gadget ( that displays the results of an issue filter) or you could use the Issue Statistics gadget (which would display the collection of issues returned from a filter, broken down by a field).
Cheers,
Hamza
Welcome to the Atlassian Community!
Start with a look at the filter for the board (if it's not a Software board, it will probably be just "Project = X")
Take a copy of it, and add two new clauses
and "story size" is empty and status not in (closed, done, ended)
You now have a filter that will find unsized issues in your backlog, including any in open sprints (active or future).
You can now use that filter in any dashboard gadget to help drill down into or report upon the list.
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.