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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Say I have the following table(I will call it 'Schools'):
School | Week | Pickups |
Harbor Elementary | 1 | 43 |
Harbor Elementary | 2 | 21 |
Harbor Elementary | 3 | 65 |
Harbor Elementary | 4 | 34 |
Sinclair Elementary | 1 | 24 |
Sinclair Elementary | 2 | 16 |
I want to see if I could create a 'running total' column(or measure if that's easier) based on the 'School' and 'Weeks' column, so it would look something like this:
School | Week | Pickups | Running Total Pickups |
Harbor Elementary | 1 | 43 | 43 |
Harbor Elementary | 2 | 21 | 64 |
Harbor Elementary | 3 | 65 | 129 |
Harbor Elementary | 4 | 34 | 163 |
Sinclair Elementary | 1 | 24 | 24 |
Sinclair Elementary | 2 | 16 | 40 |
How would I go about doing that?
Solved! Go to Solution.
Hey @Anonymous ,
try the following measure, that should do it:
Running Total Pickups =
VAR vLastWeek = MAX( Schools[Week] )
RETURN
CALCULATE(
SUM( Schools[Pickups] ),
Schools[Week] <= vLastWeek
)
Hey @Anonymous ,
try the following measure, that should do it:
Running Total Pickups =
VAR vLastWeek = MAX( Schools[Week] )
RETURN
CALCULATE(
SUM( Schools[Pickups] ),
Schools[Week] <= vLastWeek
)
That worked! Thank you!