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.
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)
Any help much appreciated
Solved! Go to Solution.
@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])))
@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])))
User | Count |
---|---|
126 | |
63 | |
56 | |
47 | |
41 |
User | Count |
---|---|
118 | |
67 | |
63 | |
63 | |
44 |