Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I need help with creating a measure for calculating cumulative sum by technician. I also have a date column in addition to 2 columns below. Cumulative total by Technician column is what I need. I have the measure below that calculates cumulative sum by dates but doesn't give the cumulative sum by the technician. How can I add Technician window to this. Thanks in advance for your help.
Solved! Go to Solution.
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:
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.
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:
Hi @VJ_Lsf - You already have a cumulative sum measure that works by date, but now you want to calculate the cumulative sum by Technician and Date
Cumulative Total by Technician =
CALCULATE(
SUM('Table'[Value]),
FILTER(
ALLSELECTED('Table'),
'Table'[Technician] = MAX('Table'[Technician]) &&
'Table'[Date] <= MAX('Table'[Date])
)
)
check the above modified measure . Hope it works.
Proud to be a Super User! | |
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 90 | |
| 78 | |
| 66 | |
| 65 |