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
Anonymous
Not applicable

Difference in cummulative total

Hi DAX experts,

I currently have this measure that calculates running total for payment based on date

Total Running Payment = 
VAR MaxDate = MAX ( 'Balance'[new_date] ) 
RETURN
    CALCULATE (
        [Total Payment Amount],            
        'Balance'[new_date] <= MaxDate,   
        ALL ( Balance )               
    )

How do I proceed to find the differences between running total? I tried out several solutions posted in the forum but wasnt able to get it working. I would really appreciate for your input. Thanks!

1 ACCEPTED SOLUTION
edhans
Super User
Super User

You will need to find out the next to last date. So your variable 

VAR MaxDate = MAX ( 'Balance'[new_date] )

 is fine. You can use that as follows:

VAR varMaxDate =
    MAX( Dates[Date] )
VAR varNextToMaxDate =
    MAXX(
        FILTER(
            ALL( Dates[Date] ),
            Dates[Date] < varMaxDate
        ),
        Dates[Date]
    )

So in my little sample table, varMaxDate is April 1, and varNextToMaxDate is March 15. You can then use the varNextToMaxDate to calculate the previous total.

 
 
 
 

2020-07-29 09_53_12-Untitled - Power BI Desktop.png

So perhaps another variable that calculates that previous total, then just do the math: varMaxValue - varPreviousDateValue.

    CALCULATE (
        [Total Payment Amount],            
        'Balance'[new_date] = varNextToMaxDate,   
        ALL ( Balance )               
    )
 

But I'd need to see some data to tinker with the filtering. I think your ALL() statement takes care of that but you'd need to test.

 



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

View solution in original post

4 REPLIES 4
harshnathani
Community Champion
Community Champion

Hi @Anonymous ,

 

You can also try this since you are using time intelligence and a date table.

 

Running Total = 
VAR MaxDate = MAX ( 'Dates'[Date] ) 
RETURN
    CALCULATE (
        [Total Sales],           
        'Dates'[Date] <= MaxDate,   
        ALL ( Dates )               
    )

 

Running Total-1 = 
VAR MaxDate = MAX ( 'Dates'[Date] ) - 1 
RETURN
    CALCULATE (
        [Total Sales],           
        'Dates'[Date] <= MaxDate,   
        ALL ( Dates )               
    )

 

Difference RT = [Running Total] - [Running Total-1]

 

 

1.jpg

 

 

 

Regards,
Harsh Nathani

Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!

edhans
Super User
Super User

You will need to find out the next to last date. So your variable 

VAR MaxDate = MAX ( 'Balance'[new_date] )

 is fine. You can use that as follows:

VAR varMaxDate =
    MAX( Dates[Date] )
VAR varNextToMaxDate =
    MAXX(
        FILTER(
            ALL( Dates[Date] ),
            Dates[Date] < varMaxDate
        ),
        Dates[Date]
    )

So in my little sample table, varMaxDate is April 1, and varNextToMaxDate is March 15. You can then use the varNextToMaxDate to calculate the previous total.

 
 
 
 

2020-07-29 09_53_12-Untitled - Power BI Desktop.png

So perhaps another variable that calculates that previous total, then just do the math: varMaxValue - varPreviousDateValue.

    CALCULATE (
        [Total Payment Amount],            
        'Balance'[new_date] = varNextToMaxDate,   
        ALL ( Balance )               
    )
 

But I'd need to see some data to tinker with the filtering. I think your ALL() statement takes care of that but you'd need to test.

 



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting
amitchandak
Super User
Super User

@Anonymous , difference between what?

Anonymous
Not applicable

Hi @amitchandak,

Thanks for responding. I want to find the difference in running total in two consecutive dates

pic.PNG

So for 3/31/20, the difference would be between 773,541,925 and 773,087,384; for 3/30/20 the difference would be between 773,087,386 and 772,220,532; etc.

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.