Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
I'm trying to re-create a velocity chart in Power BI from data in Azure Devops. I'd like it to be based on work item count instead of story points or estimates. Has anyone built something like this? I'm not sure where the best place is to get this info from. I found an article an article on LinkedIn by @ferryv but it is based on estimates on each work item. Thanks in advance for any help!
It is. See also: https://learn.microsoft.com/en-us/azure/devops/report/extend-analytics/data-model-analytics-service?...
If you want to use it for multiple Azure DevOps organisations, this might help you:
Can also be used for a single org.
To simplify this, you could also just use the oData route, see also: https://learn.microsoft.com/en-us/azure/devops/report/extend-analytics/analytics-recipes?view=azure-.... The workitemtype can be retrieved from this too.
In order to do it by work item count, you need to change this measures in the article that sum up the estimate values to a measure that count the items in e.g. a sprint or area path. For instance, change:
Committed = CALCULATE(SUMX('DataSet','DataSet'[Estimate]),FILTER('DataSet','DataSet'[Area Path]='DataSet'[Area Path]))to count the number of items. For instance, change it to:
Committed = CALCULATE(COUNTX('DataSet','DataSet'[Work Item Type]),FILTER('DataSet','DataSet'[Area Path]='DataSet'[Area Path]))Similarly for the "Average Velocity" measure.
Hope this helps.
Thanks @ferryv! What is the best table to pull this type information WorkItemSnapshot?
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 18 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 51 | |
| 38 | |
| 31 | |
| 26 |