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
Hannisky
Frequent Visitor

Create table with group and cummulative sum

Hi all. Could use some help 🙏
Not sure if this is done easier in Power Query or DAX, either works for me. 


I need to create a custom table based off of transactions for stock changes. The tricky part is that the correct sum at the end of the month i the total sum of ALL transactions up till that date. I then need to group these per Item and month. Example below:

Here is an extract of the current table and I need to create a new table grouped by Item and whole month with the sum of all previous cost amounts up till that month.  

Hannisky_0-1662383607843.png

 

The end result would be something like this. Item_No summerized, whole month and sum of cost up till that end of month (note not only sum within that month but sum of all previous transaction for that item)

Hannisky_1-1662383765030.png

 

Any help much appreciated 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Hannisky , Create a date table, join with date of you table, add month end date date if needed as column

 

and try a measure like

 

Cumm Sales = CALCULATE(SUM(Table[Cost Amount Actual]),filter(all('Date'),'Date'[date] <=max('Date'[date])))

 

Cumm Sales = CALCULATE(SUM(Table[Cost Amount Actual]),filter(allselected('Date'),'Date'[date] <=max('Date'[date])))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Hannisky , Create a date table, join with date of you table, add month end date date if needed as column

 

and try a measure like

 

Cumm Sales = CALCULATE(SUM(Table[Cost Amount Actual]),filter(all('Date'),'Date'[date] <=max('Date'[date])))

 

Cumm Sales = CALCULATE(SUM(Table[Cost Amount Actual]),filter(allselected('Date'),'Date'[date] <=max('Date'[date])))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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.

Top Solution Authors