Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
75 | |
63 | |
51 | |
48 |
User | Count |
---|---|
211 | |
86 | |
64 | |
59 | |
56 |