- Support
- Reports and Dashboards
- Visual Reports
- Cumulative, Burn Up & Down Reports: Examples and Use Cases
There is a way to setup the burn down to look at a different entity status other than “Done” with the help of Visual reports.
Burn down reports does count based on effort or count but never based on some progress
and the only workaround may be that using Custom Definition of Done (DoD) for the burndown report.
Source type: Cumulative, Burn Up & Down Reports
X-Axis: Timeline
Y-Axis: Sum(EffortState)
EffortState Formula for "Kanban TP" process for user stories on plan account:
CASE
WHEN EntityState.IsInitial THEN Effort
WHEN EntityState.Name = "Planned" THEN Effort
WHEN EntityState.Name = "Reopen" THEN Effort
WHEN EntityState.Name = "In Dev" THEN Effort
ELSE 0
END
Here it will return 'Effort' for all states prior to target and 0 for all states after target
It will count 'Coded' and any next state as 'target' for burn down.
The result is as follows:
You can even add regular burn down chart by effort by adding Sum(Effort to do) in Y-axis to compare with that of Sum(EffortState) on same canvas:
Still have a question?
We're here to help! Just contact our friendly support team.