Reputation: 105
We want to have a chart or some other way of report for our team to see how much time we spent on our tasks since the start of the sprint, grouped by each developer/team member. Similar to the burndown chart but only tracking newly added "Completed Work" to a task in the sprint and not adding the completed work for all developers (the burndown for Completed Work seems to add up all completed work, so if a task was moved over with 12 hours already clocked for example it adds that, too, even though we do not want this in our chart).
Does Azure DevOps have this capability or is there an add on for this?
Upvotes: 0
Views: 498
Reputation: 5411
You can create a custom query and use the chart to visualize the result. For example, add the following filter conditions and add Completed Work from Column options.
Save the query and go to Charts. Create a new chart and take the second chart for example.
Then you can see the chart as shown below:
In addition, you can also create analytics views and then connect to Power BI to customize your report. See more detailed info from About Power BI integration. For example,
Upvotes: 0