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
PBI-Bro
Advocate I
Advocate I

Can't calculate cumulative sum

Hi,

I'm trying to do the simplest calculation here. A have a table with a Date Key column and a colum "IsPayday", which is of Type Whole number.

I want to have a running total of the second one and have tried many variations of the formula below, but haven't figured it out:

 

PBIBro_0-1666882071773.png

Thanks for your help!

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

try

Is Payday running total =
VAR MaxDate =
    MAX ( 'Calendar'[Datekey] )
VAR Result =
    CALCULATE ( SUM ( 'Calendar'[Is payday] ), 'Calendar'[Datekey] <= MaxDate )
RETURN
    Result

View solution in original post

4 REPLIES 4
PBI-Bro
Advocate I
Advocate I

Thank for your help.

 

I decided to change the source data and add ispayday as boolean in the data warehouse. With the field imported into Power BI I used the following variation of your code and got the calculation working:

 

 

Is Payday running total = 
VAR MaxDate =
    MAX ( 'Calendar'[Datekey] )
VAR Result =
    CALCULATE(COUNTROWS('Calendar'), 'Calendar'[Datekey] <= MaxDate && 'Calendar'[ispayday] = true )
RETURN
    Result

 

 

johnt75
Super User
Super User

try

Is Payday running total =
VAR MaxDate =
    MAX ( 'Calendar'[Datekey] )
VAR Result =
    CALCULATE ( SUM ( 'Calendar'[Is payday] ), 'Calendar'[Datekey] <= MaxDate )
RETURN
    Result

Thanks for your help @johnt75 

 

I tried it and have this error:

PBIBro_0-1666885903789.png

 

IsPayday is a custom column that I created in the Power Query Editor. Can that be the problem?

You have an extra ] after IsPayday

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.