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 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.
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.
The problem of using the Filter (!=Epic) is when you need to base the Swimlanes on Epics, .....
no information ......
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.
Could you be more specific where to find that filter or steps to apply that 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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.