I’m new to Jira and currently working in a software development team. I would like to set up multiple Kanban boards under a single project, with each board used to track different requirements.
The reason I want to do this is that I also need to track the development stages and details within each requirement. Having separate Kanban boards feels like it might help me manage and visualize these workflows more clearly.
Is this approach feasible? If not, what would you recommend as a better way to manage and track requirements and their internal development steps within one project?
Any suggestions or best practices would be greatly appreciated. Thank you!
Hi @Jimmy Guo, welcome to Jira! 👋Yes, you can absolutely create multiple Kanban boards in a single project. Each board is just a filter (JQL) + column mapping, so you can have different views of the same issues without duplication. When to use multiple boards
Avoid creating a new board for every workflow step model stages in the workflow instead.
Best practice structure
Options to visualize
One board, strong filters:
component = "Mobile" OR labels = api
Multiple boards:
project = ABC AND component = "Mobile" AND statusCategory != Done
Tips to keep it clean
Alternatives
Bottom line: Start with one board using swimlanes and filters. Add extra boards only if a group consistently needs a different view. Too many boards = fragmented focus.
Hope this helps! and good start on your journey
@Christos Markoulatos Thank you for your reply! This helps a lot and I'll try to apply those to the project I'm working on.
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.
I attempted to create an additional Kanban board under our project folder using a saved JQL filter, but I’m unable to see the filter in the board setup—even though it’s shared with viewers who have access to the project space.
Also, I’d appreciate your clarification on one point: if we create another Kanban board within the same project, will the test cases that are already visible on the existing board also appear on the new one?
Thanks in advance for your support.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also try to use JQL to control what shows on each board, e.g.:
project = ABC AND component = "Mobile"
Docs: Create a board
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for the clarification @Christos Markoulatos . I have one more question regarding importing requirements into Jira. The user stories I'm working with use Gherkin syntax, and when I import them, the acceptance criteria appear as a single-line statement rather than being formatted properly across multiple lines like:
Given ...
When ...
Then ...
Could you please help me resolve this issue so that the Gherkin structure is preserved in the Jira description field after import?
TIA
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi again @Ambika Thangasamy 👋
As far I remember, in order to keep your Gherkin steps (Given / When / Then) on separate lines after a CSV import, you just need to format the text in your CSV like this:
"Given user is logged in\nWhen they click Submit\nThen they see a success message"
If you’re working a lot with Gherkin or BDD, tools like Xray or Zephyr can import .feature files directly and keep the structure intact.
Links that might help:
Hope this helps! 🚀
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.