Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I created an epic for my project and assigned several issues I had already created to it. However when I go to the Agile board for that project no issues are showing in the backlog. When I click on the Epics tab, it tells me that I have 0 issues in that epic. However if you click on the link to that epic, it clearly shows there are issues in that epic. Attaching images for example (blacked out the project name to protect the client).
example01.jpgexample02.jpg
Took this from the doc:
"An issue will only be visible in the Backlog if:
Are your statuses mapped to columns properly?
Why is this rule there?!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Because if it is done, it is done. It should not appear in the backlog, because it is done.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, I wanted to show issues under status NEW in backlog and not in Sprint. So, I was forced to add NEW status to the column in the sprint.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Why is this here? I found the support article here but it doesn't explain it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the exact same issue. Everything was working fine in JIRA 6.2.3. Then i updated to JIRA 7.0.2 and now nothing shows up in the Epics. Filters were not changed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The filter Query is simply project = VMGI ORDER BY Rank ASC.
Nothing special there, the issues even show up when you open up the filter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's good. Now, are you using a Scrum board or a Kanban Board? If Scrum, check if the issues are not assigned to a completed sprint. If Kanban, check the sub-filter query. By default, that hides issues that have a released version in Fix Version
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Scratch that, you're using Scrum and the issues are still Open. That can't be it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A similar issue happened to me. In my case, I had a couple of issues assigned to a sprint, and they were from project W. Also, these issues have an epic link, which is in project X.
My board filter shows the issues (from project W with epics from project X), but as I was using SWIMLANES BY EPICS (on the board config), and the epic from project X itself wasn't mapped on this filter, I think it was responsible for hiding the issues from the sprint board.
After disabling the swimlanes, the issues appeared on the sprint board.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your Agile board was probably created from a project, in which case a filter that goes "project = Project A" is created for you and applied to your board.
Take a look at this documentation and make sure the filter for your board isn't excluding the issues you're adding to the epic.
https://confluence.atlassian.com/display/AGILE066/Configuring+Filters
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The answer is probably the filter to your board. It must somehow exclude the issues you added to that Epic. Simply adding them to an epic won't make them appear on your board, they have to pass the filter too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not sure if this is the right place, but I've got a problem whereby when I apply a filter, that excludes two epics, and the resolved statuses, four of the issues that should appear, that DON'T have epics at all, disappear.
The scenario
Total issues: 57
Issues that I should see after applying the filter: 14
Issues that I do see after applying the filter: 10
The ones that are missing are the four that are missing an epic. They are in a To Do status.
The filter is:
project = QAVERIFY AND "Epic Link" != QAVERIFY-519 AND "Epic Link" != QAVERIFY-572 AND status != Rejected AND status != Done AND status != Confirmed ORDER BY Rank ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In my opinion this filter has a common problem/issue, that you spot, when you work with DBs. By saying:
... "Epic Link" != QAVERIFY-519 AND "Epic Link" != QAVERIFY-572 ...
you are really saying: filter all linked to epics but epic link QAVERIFY-519 AND filter all linked to epics but epic link QAVERIFY-572.
Saying 'not equal too' assumes, there is a value, so you just need to add null value and do sth like that:
... (("Epic Link" != QAVERIFY-519 AND "Epic Link" != QAVERIFY-572) OR "Epic Link" IS EMPTY) ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As far as I can see, I don't have any filters on this board. I didn't eve know that was possible other than the two "quick filters" at the top of the page. I know how to create filters for dashboards and searching, but not using them for an Agile board.
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.