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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
coco6l
Frequent Visitor

Cumulative sum

I have two curves representing the hours planned and completed for each month.
Capture d'écran 2024-02-15 120718.png
I'd like to sum up the hours planned for each year, then calculate this sum and subtract the hours actually worked, to see how the hours consumed have evolved. The difficulty I'm having is that I'm having problems with my data modeling (maybe I need to modify something with my data architecture because I have Sum of Initial No. Hours 2023 and 2024 that I've calculated (I'm also interested in sources on how to properly model data for Power BI). I was able to remedy this by calculating the planned hours for the period :

 

 

 

Heures prévues période = 
VAR DateMin = MIN('Heures réalisées'[Date]) // Recovers the minimum date after filtering
VAR DateMax = MAX('Heures réalisées'[Date]) // Retrieves the maximum date after filtering
VAR NbMois = DATEDIFF(DateMin, DateMax, MONTH) + 1 // Calculates the number of evolved months
RETURN
[Heures Prévues] * NbMois // Multiplies the scheduled hours by the number of months elapsed

 

 

 

I've tried some complex calculations but without success, and I think there's a simpler way of doing this. In addition, I'm interested in the possibility of forcasting the hours achieved by displaying them with dashes, for example forcasting.

Thank you for your help (and sorry for the content in french)

2 REPLIES 2
mh2587
Super User
Super User

//Try this
Difference (Planned - Actual) = 
VAR SumPlannedHours = SUM('Heures prévues'[Heures Prévues])
VAR SumCompletedHours = SUM('Heures réalisées'[Heures Réalisées])
VAR PlannedHoursPerYear = CALCULATE(SumPlannedHours, ALLEXCEPT('Date Table', 'Date Table'[Year]))
VAR CompletedHoursPerYear = CALCULATE(SumCompletedHours, ALLEXCEPT('Date Table', 'Date Table'[Year]))

RETURN
PlannedHoursPerYear - CompletedHoursPerYear

Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



coco6l
Frequent Visitor


Hello @mh2587,
Thank you very much for the reply. I wanted to do sth like this exactly, I still have the problem that "heures prévues" is measure style and so I can't sum? Capture d'écran 2024-02-15 153940.png
If ever here is my structure and my measure "heures prévues".

 

Heures prévues = 
VAR YearOfDate = YEAR(MAX('Heures réalisées'[Date])) // ou MIN, selon la granularité de vos données
RETURN
DIVIDE(
    SWITCH(
        YearOfDate,
        2023, SUM('Heures prévues'[Nbre Heures initial 2023]),
        2024, SUM('Heures prévues'[Nbre Heures initial 2024]),
        BLANK()
    ),
    12
)

 


Thanks

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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