The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!
User | Count |
---|---|
82 | |
80 | |
35 | |
32 | |
32 |
User | Count |
---|---|
93 | |
79 | |
62 | |
54 | |
51 |