Can I create a view of multiple backlogs into one view of all the backlogs

kyrryk February 1, 2016

Hi,

 

We have multiple boards with multiple backlogs. Is there a way to view the backlogs as one whole backlog.

1 answer

1 accepted

1 vote
Answer accepted
Phill Fox
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 1, 2016

You can achieve this by the following method.

  1. Create a filter which shows all the issues from all the boards you wish to have on your common backlog. 
  2. Share this filter with whoever is appropriate
  3. Create a new board based on the filter you created.
  4. Configure the board as appropriate. 

You will now have a common backlog across all your boards. Remember to use the individual boards for actioning items otherwise it can be very confusing for all involved.

 

You can use the same method for creating a single board that spans more than one project.

 

kyrryk February 2, 2016

Thanks Phil,

 

The filter seems to be the problem. So far I have

project in (xx, xx, xx) AND issuetype in (Bug, Epic, Story, Task) AND status = Open AND assignee in (membersOf(jira-users)) ORDER BY Rank DESC

but it will still pick up issues that are open and in the current active sprint under the To Do lane.

Is there not JQL syntax for backlog as there is for project?

 

 

Phill Fox
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 2, 2016

If you wish to exclude any items that are already allocated to a sprint add the following condition to your SQL 

AND sprint is EMPTY

so this becomes 

project in (xx, xx, xx) AND issuetype in (Bug, Epic, Story, Task) AND status = Open AND assignee in (membersOf(jira-users)) AND sprint is EMPTY ORDER BY Rank DESC

Alternatively if you ever need to see all items that are allocated to a sprint use 

AND sprint is NOT EMPTY
kyrryk February 2, 2016

Thanks Phil, seems to have done the trick.

Suggest an answer

Log in or Sign up to answer