All eazyBI for Jira eazyBI for Confluence Private eazyBI

Sprint burn-down or burn-up chart
eazyBI for Jira

This example will show how to build story points burn-down or burn-up charts using Jira Agile Sprint and Story Points custom fields.

This is Sample Jira Software report we include in any eazyBI account with Sprints and Story Points selected and sample reports import option

To build this report in previous eazyBI versions do the following steps:

Now Time within Sprint should show 1 for those dates which are within selected sprint start and end dates.

Now you can add other measures for story point burn-down and burn-up. Select Cumulative Story Points resolved and Story Points remaining from Measures dimension Calculated members / Sprint Measures. 

Please select an import option "Import issues change history" and run an import if you do not have measure Story points remaining in Measures.

In addition, you can add a standard calculation Linear trend for Story Points remaining. Click on the measure Story Points remaining in the legend and select option Add calculated>Linear trend. eazyBI will add a new measure to the report Linear trend Story Points remaining

Then define Sprint Story Points guideline representing the ideal guideline on how to burn committed points between the sprint start date till planned end date:

CASE WHEN
  DateBetween(
    [Time].CurrentHierarchyMember.StartDate,
    DateWithoutTime([Sprint].CurrentHierarchyMember.Get('Activated date')),
    [Sprint].CurrentHierarchyMember.Get('End date')
  )
THEN
  (
    [Measures].[Sprint Story Points committed],
    [Time].CurrentHierarchy.DefaultMember
  ) 
  *
  (
    DateDiffWorkdays(
      DateWithoutTime([Sprint].CurrentHierarchyMember.Get('Activated date')),
      DateAddDays(DateWithoutTime([Sprint].CurrentHierarchyMember.Get('End date')), 1)
    ) 
    -
    DateDiffWorkdays(
      DateWithoutTime([Sprint].CurrentHierarchyMember.Get('Activated date')),
      [Time].CurrentHierarchyMember.NextStartDate
    )
  )
  /
  DateDiffWorkdays(
    DateWithoutTime([Sprint].CurrentHierarchyMember.Get('Activated date')),
    DateAddDays(DateWithoutTime([Sprint].CurrentHierarchyMember.Get('End date')), 1)
  )
END

When all Measures have been selected, you can change to display the burn-down / burn-up as chart. Switch to bar, line or timeline chart and change chart style as needed by clicking on legend boxes.

See also