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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
rgreen
Regular Visitor

Standard Burn Down excludes weekend

BurnDown.PNGI have successfully created a burn down report of Odata data from Azure DevOps which works great and looks to correctly exclude weekends.  But the next day my Burn Down planned hours has recalculated and it should not because today is a weekend.  I have used combination of tips using a new DateRange calculated table with a IsWeekDay = 1 filter on the visual.    Is there something I need to add to my measure to help exclude the burn up for weekend?

 

#Burndown Planned =
VAR ProjectStart = CALCULATE(MIN(WorkItems[Date]), DATESYTD(ALLSELECTED(DateRange[Date])))
VAR DayDaysSinceStart = CALCULATE(DATEDIFF(ProjectStart,MAX(DateRange[Date]),DAY))
VAR BeginningStart = CALCULATE(SUM(WorkItems[Remaining Work]), DATESYTD(DateRange[Date]))
VAR SprintLength = 21
RETURN
IF(
    MAX(DateRange[Date]) >= ProjectStart && MAX(DateRange[Date]) <= ProjectStart + SprintLength,
    BeginningStart - (DayDaysSinceStart * (BeginningStart/SprintLength)),
    BLANK()
)
2 REPLIES 2
rgreen
Regular Visitor

I look more into this it may have something to do with the ODATA from DevOps that brings historical data as well as current data.  Is there a way to keep historic for burn down purpose but use current for understanding where the remaining work is at this point?  Help would be greatly appreciated!

A bit late but there is a field called "Is Current" on all the queries of historic data if you are using The Analytics views (Boards) as the connection to DevOps. The field will be true for the rows of current data.

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 Kudoed Authors