0

I have a simple question that somehow refuses to get answered. All resources online point to contradictory ways of doing a cumulative flow diagram. Hence, here's my query to you -

How do we add Stories per day to a cumulative flow diagram in Kanban?

  1. Do we add the Stories that were worked on any day in any of the queues? - This implies that the numbers can drop over time and there is considerable fluctuation.
  2. Do we add the Stories that were ever worked in any of the queues + Stories that were worked today? This means that the numbers in any queue can never drop down. They will grow over time or remain the same as yesterday at the least.

I understand that cumulative means approach# 2 but I do see examples which take the first approach.

Dilipkumar J
  • 121
  • 1
  • 7

1 Answers1

2

Lets assume you have such flow on count of tasks:

  • Day 1 - 5 tasks in backlog 2 in WIP
  • Day 2 - 4 tasks in backlog 3 in WIP
  • Day 3 - 6 tasks in backlog 2 in WIP 2 in DONE
  • Day 4 - 2 tasks in backlog 4 in WIP 4 in DONE
  • Day 5 - 0 tasks in backlog 3 in WIP 7 in DONE
  • Day 6 - 0 tasks in backlog 0 in WIP 10 in DONE

So first of all whenever new tasks is added to Backlog, you increase you total effort value. Thus the cumulative flow chart will grow not burn like burndowns. Your cumulative data should be like this:

  • Day 1 - Total effort: 7, Partial effort: 2, Effort spent: 0
  • Day 2 - Total effort: 7, Partial effort: 3, Effort spent: 0
  • Day 3 - Total effort: 10, Partial effort: 4, Effort spent: 2
  • Day 4 - Total effort: 10, Partial effort: 8, Effort spent: 4
  • Day 5 - Total effort: 10, Partial effort: 10, Effort spent: 7
  • Day 6 - Total effort: 10, Partial effort: 10, Effort spent: 10
VidasV
  • 4,335
  • 1
  • 28
  • 50