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!View all the Fabric Data Days sessions on demand. View schedule
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] )
)
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!