The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi there,
I have got sales values. I want to create a column, which contains the cumulative/running sum of the last 48 sales values. Any help in this regard would be really appreciated.
Regards
Yasir
Solved! Go to Solution.
Hi,
You should add an index column to the table if you don't already have it. Just a click in Power Query.
Then something like this:
NewColumn =
VAR CurrentIndex = 'Table'[Index]
RETURN
CALCULATE (
SUM ( 'Table'[ColumnToSum] ),
FILTER (
ALL ( 'Table' ),
'Table'[Index] > CurrentIndex - 48
&& Table[Index] <= CurrentIndex
)
)
Hi,
You should add an index column to the table if you don't already have it. Just a click in Power Query.
Then something like this:
NewColumn =
VAR CurrentIndex = 'Table'[Index]
RETURN
CALCULATE (
SUM ( 'Table'[ColumnToSum] ),
FILTER (
ALL ( 'Table' ),
'Table'[Index] > CurrentIndex - 48
&& Table[Index] <= CurrentIndex
)
)