Agile – How to compute scrum burndown chart when projects overlap

agileburndownscrumscrum-masterstories

In my team we have a multiple projects, some short term and some long term. The team is required to deliver these projects on different dates and the effort to deliver these is run in parallel with the team working on stories for more than one project during each sprint.

When trying to compute our burndown we aren't sure what to do.

As the team is split between projects the velocity can change dramatically week-on-week as people shuffle to the tasks best suited for their specialty across the projects. This makes it difficult to create a reliable and meaningful burndown chart for each project.

However if we combine the stories into a single burndown chart how can we track against the release if the release dates are different and it isn't obvious which points remain for each project.

Is there a good method for dealing with this?

Best Answer

When a SCRUM team works on stories from multiple projects, you should have several burn-down charts:

  • One chart indicating the progress on the stories within the current sprint. This chart is updated daily by the team to indicate how they are progressing to the sprint-goal of that sprint. Where the stories on the chart come from should not matter for the chart.
  • One chart per project to keep track of how the project is progressing towards its release date. This chart is mainly for the project manager(s) to keep track of the progress of their project(s) and should be updated only when a story for that project is delivered by the team.

The velocity measurement is SCRUM is meant to give the team a measure for how consistent they are estimating the amount of work/complexity that they can handle in a sprint. This can only work if there is a single golden standard to use as a reference for a unit of work/complexity.
The golden standard can (and will) differ between teams, but it should be consistent within a team, even if that team works on stories from different projects.

The recommended way to establish such a golden standard is to pick a story of medium effort and give that 3 story points. Then you estimate all other stories relative to that golden standard.

Related Topic