Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

Reply
Anonymous
Not applicable

What is the most efficient way to get running total based on two columns?

Say I have the following table(I will call it 'Schools'):

 

SchoolWeekPickups
Harbor Elementary143
Harbor Elementary221
Harbor Elementary365
Harbor Elementary434
Sinclair Elementary124
Sinclair Elementary216


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:

SchoolWeekPickups Running Total Pickups
Harbor Elementary14343
Harbor Elementary22164
Harbor Elementary365129
Harbor Elementary434163
Sinclair Elementary12424
Sinclair Elementary21640


How would I go about doing that? 



1 ACCEPTED SOLUTION
selimovd
Super User
Super User

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
    )

 

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

 

View solution in original post

2 REPLIES 2
selimovd
Super User
Super User

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
    )

 

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

 

Anonymous
Not applicable

That worked! Thank you! 

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.