Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi all.
I'm trying to make running total in Power BI like chart below.
It has date and different group name and I want to make running total for each groups.
I used 'quick measure' but it doesn't work.
Could you help me to solve this problem?
Solved! Go to Solution.
Hi @teo9578 See if this will work for you. I attached the file as an example too
RunningTotal =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALLEXCEPT ( 'Table', 'Table'[Group] ),
'Table'[Date] <= MAX ( 'Table'[Date] )
)
)
Hi @teo9578 See if this will work for you. I attached the file as an example too
RunningTotal =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALLEXCEPT ( 'Table', 'Table'[Group] ),
'Table'[Date] <= MAX ( 'Table'[Date] )
)
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 54 | |
| 47 | |
| 39 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 82 | |
| 69 | |
| 39 | |
| 29 | |
| 27 |