Creating a board
Before you begin
Any user can create a board, but certain permissions are required to share the board with other users:
- If you create a board via Boards (in header) > View All Boards, you will not be able to share it, unless you have the 'Create Shared Objects' global permission.
- If you create a board via the following methods, you do not need the 'Create Shared Objects' global permission to share the board:
- Creating a project (where a board is created for the project by default)
- Setting up Jira Software for the first time (where you're prompted to create a project, which also creates a board for the project)
- Copying a board (the copied board will be shared with the same users as the original board)
Creating a new board
- Log in to Jira Software.
- If you're setting up Jira Software for the first time, do either of the following actions. Otherwise, please continue.
- If you're creating either a Scrum software development project or a Kanban software development project, follow the prompts to create your project. A board is created for your project by default.
- If you're creating a Basic software development project, follow the prompts to create your project. After your project is created, click Create board under your project name, and follow the prompts to create your board.
- Select Boards > View All Boards from the top navigation bar.
Click Create board at the top-right of the page, and choose whether to create a Scrum board or Kanban board, as described below. Note that you cannot change the board type after creation (that is, a Scrum board cannot become a Kanban board, and vice versa).
Your new board will be shown. At the top is a link that you may want to send to other people so that they can use your board.
Congratulations — you have created a new board!
Copying an existing board
If you would like to create a board that is similar to one you are already using, you can simply create a copy.
Your new board will be based on the same issue filter as the original board. You will be the administrator of the new board, but not necessarily of the filter, so you may not be able to edit the filter. However, once your new board is created, you can easily choose a different filter (e.g. to view a different project) — see Configuring filters.
- Select Boards > View All Boards from the top navigation bar.
- The All boards screen will be displayed. Click the Copy link corresponding to the board of interest.
Alternatively, to quickly create a copy of the board you are currently viewing, simply select Copy from the Board menu at the top right of the page.
Example JQL queries for board filters
Here are a few common queries that you can use for your board's filter:
Select all issues that are Unscheduled or in an Unreleased Fix Version:
project = GHS AND (fixVersion in unreleasedVersions() or fixVersion is empty
Select all issues you are interested in:
(assignee = currentUser() or reporter = currentUser()) AND (fixVersion in unreleasedVersions() or fixVersion is empty)
Show all issues that you have participated in and have been updated in the last week. This requires the JIRA Toolkit app.
updatedDate > -7d AND Participants = currentUser()
Select all issues for a team (using a Label custom field named 'Team')
(team = ateam or team = dreamteam or team = engineroom) AND (fixVersion in unreleasedVersions() or fixVersion is empty)
Only select my bugs for a bugfix team
project = GHS AND team = bugfix AND issuetype = bug AND (fixVersion in unreleasedVersions() or fixVersion is empty)
Try fixVersion = earliestUnreleasedVersion(PROJECT KEY) to see all issues in the next Fix Version to be released:
fixVersion = earliestUnreleasedVersion(PROJECT KEY)
See JQL for more information on using JQL for your board. Let your imagination run wild!
Next steps
Need help? If you can't find the answer you're looking for in our documentation, we have other resources available to help you. Check out Getting help.
Read the following related topics:
- To learn more about your new board, see What is a board?
- If you wish to make any changes to your new board, see Configuring a board.
- If you wish to make any changes to the issue filter for your board, see Configuring filters.
- To learn more about adding a column to your board, see Configuring columns.