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
wunnavabk
Regular Visitor

Help with cumulative Graph

Hi,

I am a new bee and trying to prepare a graph in Power BI.  I have connected PowerBI with Azure Devops and pulled the data.

I am trying to build a graph which will show incremental delivery of effort sprint after sprint.

My data is something like below

 

ReleaseSprintTitleStateEffort
Release 1Sprint 1Story 1Done5
Release 1Sprint 1Story 2Done8
Release 1Sprint 2Story 3Done5
Release 2Sprint 1Story 4In Progress3

I want to prepare a graph to show cumulative delivery of effort per Release and Sprint as below.

 

Picture1.png

 

Could not figure out how to do it.

 

Thanks in

2 REPLIES 2
amitchandak
Super User
Super User

@wunnavabk , Try a measure like

 

calculate(Sum(Table[Effort]), filter(allselected(Table), Table[Sprint]<= max(Table[Sprint]) ) )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

sorry for delayed response.

Thank you @amitchandak for your solution, but however i could not see the results what i am expecting, instead it is showing different result.

My requirement is to produce a Burnup chart with cumulative scope & cumulative completed.

My actual result should look like something below.

Total Completed= cumulative sum by each sprint

Product backlog= cumulative sum of scope

wunnavabk_1-1670221354097.png

but instead I am getting cumulative of the efforts in the sprint. which is also nice to represent, but completed is what i am not able to show case.

 

wunnavabk_0-1670221326176.png

below are the mesures which i have used.

Cumulative Scope = CALCULATE (SUM(AllData[Effort]),FILTER (ALLSELECTED(AllData), AllData[Created Date] <= MAX (AllData[Created Date])))
 
Cumulative (Completed) =
var cumu= CALCULATE(SUM(AllData[Effort]),FILTER(ALLSELECTED(AllData),AllData[Iteration End Date]<=Max(AllData[Iteration End Date]))) return
CALCULATE(cumu, FILTER(ALLSELECTED(AllData), AllData[State] IN { "Done","Resolved","Closed" }) )

 

 

Thanks in advance

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