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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.