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
jdugas
Helper I
Helper I

Help with Running Total

I can't seem to figure out how to write DAX to calculate what's in column Running Balance. The Reserve Beginning Balance is what starts the calculation on a year basis and each month Reserve is added to it.

 

Reserve Beginning Balance + Reserve = Running Balance.

 

Any ideas how I would calculate Running Balance?

 

yearMonth  Reserve           Reserve Balance YTD          Reserve Beginning Balance              Running Balance
3/1/2017     ($11,100)         $107,000.00                       $0.00                                                 ($1,457,600.00)
2/1/2017     $63,600           $118,100.00                       $0.00                                                 ($1,382,900.00)
1/1/2017     $54,500           ($1,446,500.00)                  ($1,501,000.00)                                  ($1,446,500.00)

1 ACCEPTED SOLUTION
v-sihou-msft
Employee
Employee

@jdugas

 

I can't understand why the Running Balance for 3/1 is ($1,457,600.00). Based on your logic, it should be a cumulative sum for those two columns, you just need to create a YTD measure.

 

Running Balance =
CALCULATE (
    SUM ( Table1[Reserve Beginning Balance] ) + SUM ( Table1[Reserve] ),
    FILTER (
        ALL ( Table1 ),
        Table1[Date] <= MAX ( Table1[Date] )
            && Table1[Date] >= DATE ( YEAR ( MAX ( Table1[Date] ) ), 1, 1 )
    )
)

5.PNG

 

 

Regards,

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi

 

 Can you clearly explain the logic that used to derive the values of running balance column?  

 

Thanks

Hari

v-sihou-msft
Employee
Employee

@jdugas

 

I can't understand why the Running Balance for 3/1 is ($1,457,600.00). Based on your logic, it should be a cumulative sum for those two columns, you just need to create a YTD measure.

 

Running Balance =
CALCULATE (
    SUM ( Table1[Reserve Beginning Balance] ) + SUM ( Table1[Reserve] ),
    FILTER (
        ALL ( Table1 ),
        Table1[Date] <= MAX ( Table1[Date] )
            && Table1[Date] >= DATE ( YEAR ( MAX ( Table1[Date] ) ), 1, 1 )
    )
)

5.PNG

 

 

Regards,

Greg_Deckler
Super User
Super User

It would seem that you could just create a measure that was a running total of Reserve and then simply add that to your Reserve Beginning Balance of your MIN date?


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.