Hi everyone!!
I am facing an issue in JIRA as I am unable to define how many items I have in my backlog and so I am unable to trace my roadmap and define a dashboard.
as there is no define filter, I can filter all the items with. I am expecting the number of which I am trying to filter should show me the exact number I have in my backlog.
my total backlog number is 188. however, I have some items created in other sprint. so, I'm trying to filter with only number of 188 not the items in my other sprints and not receiving that accurately.
the query I'm trying with is this:
project = MYPROJECT
AND statusCategory != Done
AND (
sprint IS EMPTY
OR (
sprint NOT IN openSprints()
AND sprint NOT IN futureSprints()
)
)
When you run the JQL, what do you get
project = MYPROJECT AND statusCategory != Done and sprint is Empty
Hi @Vishal Biyani , I get a number which is 226 but not what is showing in my backlog . my backlog is showing =188.
what am I doing wrong?! or what else from the whole backlog is taking.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if you try to exclude Epics from the above query, then does the count match?
project = MYPROJECT AND statusCategory != Done and sprint is Empty and issuetype != Epic
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks @Vishal Biyani
it's very near to that but still shows 3 number difference. like now it is showing 186.
which in actual number in the backlog its 188.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looks like you have few subtasks. You can filter it out using
issuetype not in subTaskIssueTypes()
project = MYPROJECT AND statusCategory != Done and sprint is Empty and issuetype != Epic and issuetype not in subTaskIssueTypes()
See if this works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Alot !!! @Vishal Biyani this worked yes.!
appreciated it!
but just out of curiosity why should we exclude subtasks?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Generally, subtasks are related to a story or task. The expectation is one story/task should complete in a sprint (unless there are reasons beyond anyone's control).
You can go through this article related to this topic.
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.
Hello @Fatima AlZarooni
Your issue is not very clear. Can you clarify it please?
And I belive there is a point witch looks not very clear for you:
Best regards,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, I'M sorry if my question wasn't clear.
i will try to rephrase, I'm trying to run a report from Jira (Filters) where I can have all the counts of my product backlog. the whole list. and that is what I'm unable to get.
i don't see any filtrations i can do to get the backlog extracted as report (CSV).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.