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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
stewbel
New Member

Cumulative Totals not working in the visualization

I have a cumulative total for hours over time :

Cumulative_Hours = CALCULATE(
  SUM(QryTimesheets[Labor Hours]), FILTER(ALLSELECTED(QryTimesheetS), QryTimesheets[PA Period End Date]<=MAX(QryTimesheets[PA Period End Date])))
 
This works great if my slicer for selecting data is either Infrastructure, OR PM hours. If both categories are included in the visual, then I get the running sum for the entire table for that time slice. This matters as I want to display a cumulative chart with lines for both infrastucture and PM cumulative hours. Thanks in advance

 

stewbel_1-1711970841801.png

 

 
1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I do not know how your semantic model looks like, but please try something like below whether it suits to solve the issue.

Cumulative_Hours =
CALCULATE (
    SUM ( QryTimesheets[Labor Hours] ),
    FILTER (
        ALLSELECTED ( QryTimesheetS ),
        QryTimesheets[PA Period End Date] <= MAX ( QryTimesheets[PA Period End Date] )
            && QryTimesheets[GRP] = MAX ( QryTimesheets[GRP] )
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

2 REPLIES 2
stewbel
New Member

Fantastic - thank you so very much

 

Jihwan_Kim
Super User
Super User

Hi,

I do not know how your semantic model looks like, but please try something like below whether it suits to solve the issue.

Cumulative_Hours =
CALCULATE (
    SUM ( QryTimesheets[Labor Hours] ),
    FILTER (
        ALLSELECTED ( QryTimesheetS ),
        QryTimesheets[PA Period End Date] <= MAX ( QryTimesheets[PA Period End Date] )
            && QryTimesheets[GRP] = MAX ( QryTimesheets[GRP] )
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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