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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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])))

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])))

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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