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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Heena_9980400
Helper IV
Helper IV

Need help on getting running total for month

Hi Experts,

 

I need help running total or cumulative sum for only months, You can see the requirement screenshot.

How to get the running total monthly wise, Kindly need some suggestion here.

DATE CUMM.PNG

 

 

 

 

 

 

 

 

 

 

Appreciate your help on this.

 

Thanks,

hk

1 ACCEPTED SOLUTION
olgad
Super User
Super User

Hi, there has to be a month number column as well, 1,2,3...,12 which you can use. 
In my example I have a seprate calendar/date table

 running total in Month =
CALCULATE (
   Total Sales,,
    FILTER (
        ALL ( 'Calendar'),
      'Calendar'[Date].[MonthNo] <= MAX ( 'Calendar'[Date].[MonthNo] )
    )
)

olgad_0-1679304413400.png

 


DID I ANSWER YOUR QUESTION? PLEASE MARK MY POST AS A SOLUTION! APPRECIATE YOUR KUDO/LIKE!
PROUD TO BE A SUPER USER!
Best Stories, Interesting Cases: PowerBI Storytime Newsletter
Linkedin Profile: Linkedin
YouTube Channel: PowerBI Storytime

View solution in original post

1 REPLY 1
olgad
Super User
Super User

Hi, there has to be a month number column as well, 1,2,3...,12 which you can use. 
In my example I have a seprate calendar/date table

 running total in Month =
CALCULATE (
   Total Sales,,
    FILTER (
        ALL ( 'Calendar'),
      'Calendar'[Date].[MonthNo] <= MAX ( 'Calendar'[Date].[MonthNo] )
    )
)

olgad_0-1679304413400.png

 


DID I ANSWER YOUR QUESTION? PLEASE MARK MY POST AS A SOLUTION! APPRECIATE YOUR KUDO/LIKE!
PROUD TO BE A SUPER USER!
Best Stories, Interesting Cases: PowerBI Storytime Newsletter
Linkedin Profile: Linkedin
YouTube Channel: PowerBI Storytime

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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