Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

*Note: Currently, this widget is behind a feature flag. Please reach out to your Customer Success Manager if you’d like access to this view.

This article will explain the Sprint Attainment with Scope Changes widget and walk you through adding it to a dashboard:

image-20240311-164815.png

Our newest version of the Sprint Attainment widget is the ‘Sprint Attainment with Scope Changes’ which shows the ratio of Committed, Completed, Added, Removed work.

Prior version of the Sprint Attainment widget is the ‘Attainment’ widget which shows the ratio of Committed and Completed work.

How to Add the Widget to a Dashboard:

To add, click on the image-20240311-142750.png icon and select ‘Add Attainment’:

image-20240311-142658.png

Select the desired settings for Jira or ADO:

JIRA

  • Source: Jira

  • Measured by: Story Points or Issue Count

  • Widget Type: select ‘Attainment with scope changes’ for the comprehensive view (Added, Removed, etc.) The ‘Attainment’ option will yield our prior Committed vs. Completed ratio.

  • Jira Project: select the appropriate Jira project

image-20240311-143254.png

ADO

Source: ADO

Measured by: Story Points or Issue Count

Widget Type: Attainment with Scope Changes

Iteration Depth:

ADO Parent Sprint

Scope To:

image-20240311-143825.png

Widget View and Calculations

The widget displays the following details:

image-20240311-165046.png

  1. Blue = Committed

  2. Grey above blue= Added

  3. Purple = Completed

  4. Grey above purple = Removed and rolled over

  5. Percentage = (Completed of Committed + Completed of Added) / (Committed)

Clicking on the widget expands to a ‘modal’ view where you’ll see the ratios per sprint

image-20240311-164901.png

Clicking on this icon will allow you to download a CSV of the attainment source data:

image-20240311-165849.png

Calculation Details:

Below is a set of sample attainment data for two sprints.

 [
                {
                    'sprint_name': 'sprint 1',
                    'committed': 5,
                    'added': 2,
                    'completed': 3,  # completed 2 of added, 1 of committed
                    'incomplete': 4  # removed 1 of committed, did not complete 3 of committed
                },
                {
                    'sprint_name': 'sprint 2',
                    'committed': 8,
                    'added': 3,
                    'completed': 7,  # completed 2 of added, 1 of committed
                    'incomplete': 4  # removed 1 of committed, did not complete 3 of committed
                }
            ]

The Sprint Attainment with Scope Changes widget is doing a rollup view that takes the average of ratios for these 2 sprints.

{
    'sprint_name': 'sprint 1',
    'commited': ((5/7) + (8/11)) /2,
    'completed': ((3/7) + (7/11)) / 2,
    'committed_completed_ratio': ((3/5) + (7/8))/2
}
  • No labels