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 switched from Scrum to Kanban view and already had some Epics. They're now displayed in the To-Do lane as moveable blocks and don't want Epics to be displayed on the board. The stories are already displaying in which Epic they are by the displayed label and I want to keep that.
How do I hide those Epics from being on my Kanban board?
What you're looking for is the type field in JQL
To filter out epics:
project = PROJECTNAME AND type != Epic ORDER BY Rank ASC
You can enable the Epics panel in your board configuration. This will allow the epics to be displayed, but not as a card (ticket) on the board.
And in order for this option to show up, you need to enable the Kanban backlog, and this is done by moving a status to the backlog (in the example below, I added "Requirements needed" to the backlog, since I don't need to show those tickets in the board.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This option, for some reason is not available for our instance of JIRA. Is this something that has to be enabled somewhere else?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Erick, I was unable to see the option as well. I took an item from the Backlog column and dragged it into the Kanban Backlog. When I did this the button for "Epics Panel" became enabled.
I found the directions here: https://support.atlassian.com/jira-software-cloud/docs/configure-columns/#Enabling-the-Kanban-backlog
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can always create a quick filter which basically adds a button to the Kanban view:
This should add a button the board like so:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is a good work around to hide Epic on Kanban but have them still viewable in the backlog. Thanks @ALEX DUTHIE
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When i do this by changing the filter , i am not able to see the epics in the backlog too , is there a way to find them
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.
No - I believe the backlog you are looking at is viewed through the same filter as your board. If you filter out epics in the board, you filter them out of the backlog too.
To the best of my knowledge you need to amend the filter, or create a separate board.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
But I note in our Jira Cloud account, in Board Settings >> Columns there is a toggle as follows:
Epics panel
Display epics in a panel in the backlog, and not as cards on the board
So a way to handle this is don't filter out epics from your board, and then do enable that toggle so your epics are in your sidebar rather than listed in your backlog.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is this toggle a feature on a specific version of Jira Cloud?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
But like this i still need the filter for the Kanban view right?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Had this same problem. Edit filter for board and add issuetype != Epic :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should be able to turn on Epic Panel switch on Board Settings / Columns, that will not only enable Epic Panel on side of Backlog but hide Epics at all on Board view.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm... there is no such switch in my JIRA Cloud? Maybe part of a beta programme?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great! That's all I wanted to do.
Thx it's been bothering me for a while and this fixed it.
Here is the JQL filter I used
project = <my project> AND ((issuetype = Epic AND status != Done) OR (issuetype != Epic)) 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.
You can modify the board's filter to exclude Epics. What appears on the board is determined by the filter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When you go to Boards / Configure, under the General tab, you'll see the filter. Changing and editing the filter is all covered in the doc: https://confluence.atlassian.com/agile/jira-agile-user-s-guide/configuring-a-board/configuring-filters
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register Now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.