Forum Discussion
Cumulative sum
- 1 year ago
Hi VJ_Lsf
Hello,
I made a small test:
As mentionned, with your query I get the third line
The sum is done by month (9 then 18 and 33)
To get the sum by Date AND Techncian, you have to add the technician in the column
you just have to add:
'Table'[Technician] = MAX('Table'[Technician]) in your dax query, so your new measure becomesCumulative Total by Date & Technician =CALCULATE(SUM('Table'[Value]),FILTER(ALLSELECTED('Table'),'Table'[Date] <= MAX('Table'[Date]) &&'Table'[Technician] = MAX('Table'[Technician])))
Hi VJ_Lsf
Can you please try the below DAX?
Cumulative Sum by Technician =
CALCULATE (
SUM ( 'Table'[value] ),
FILTER (
ALLEXCEPT ( 'Table', 'Table'[Technician] ),
'Table'[date] <= MAX ( 'Table'[date] )
)
)
If this answers your questions, kindly accept it as a solution and give kudos.