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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

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 Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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