Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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 April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
102 | |
68 | |
46 | |
37 | |
37 |