Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
amit_wairkar
Frequent Visitor

Facing Problems with Velocity Calculation

We are trying to build Azure DevOps Metrics using the Azure DevOps server 2022 in Power BI. We referred the links given by Microsoft and tried to build some metrics but facing issues when trying to create Velocity using Story Points. Incase of a Sprint failure, the associated User Story/ies which is incomplete is taken to the Backlogs and then shifted to another Sprint. The Story Points for the failed Sprint should becomes Zero.

In this case we are not able to identify which User story was shifted from one sprint to another. So, we have a concern regarding calculating the Actual Story Points.

Kindly let us know if there is a better way to build this metrics for Azure DevOps Server.

 

Thanks in Advance.

Regards,

Amit Wairkar

1 REPLY 1
Sahir_Maharaj
Super User
Super User

Hello @amit_wairkar,

 

Can you please try this approach:

ActualStoryPoints = 
VAR CurrentSprint = SELECTEDVALUE(Sprints[SprintName])
VAR CompletedStories = 
    CALCULATETABLE(
        VALUES(WorkItems[WorkItemID]),
        WorkItems[State] = "Done",
        WorkItems[SprintName] = CurrentSprint
    )

VAR RolledOverStories = 
    CALCULATETABLE(
        VALUES(WorkItems[WorkItemID]),
        WorkItems[State] <> "Done",
        WorkItems[SprintName] = CurrentSprint
    )

VAR CompletedStoryPoints = 
    CALCULATE(
        SUM(WorkItems[StoryPoints]),
        WorkItems[WorkItemID] IN CompletedStories
    )

RETURN 
    CompletedStoryPoints

 


Did I answer your question? Mark my post as a solution, this will help others!

If my response(s) assisted you in any way, don't forget to drop me a "Kudos" 🙂

Kind Regards,
Sahir Maharaj
Data Scientist | Data Engineer | Data Analyst | AI Engineer
P.S. Want me to build your Power BI solution? (Yes, its FREE!)
➤ Lets connect on LinkedIn: Join my network of 15K+ professionals
➤ Join my free newsletter: Data Driven: From 0 to 100
➤ Website: https://sahirmaharaj.com
➤ About: https://sahirmaharaj.com/about.html
➤ Email: sahir@sahirmaharaj.com
➤ Want me to build your Power BI solution? Lets chat about how I can assist!
➤ Join my Medium community of 30K readers! Sharing my knowledge about data science and artificial intelligence
➤ Explore my latest project (350K+ views): Wordlit.net
➤ 100+ FREE Power BI Themes: Download Now
LinkedIn Top Voice in Artificial Intelligence, Data Science and Machine Learning

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors