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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
a_shamsuzzoha
Regular Visitor

Rolling sum based on a measure

I have the following visual.Screenshot 2020-11-30 233903.pngA and B are table columns and C is a calculated measure. Can you created a rolling sum of B based on ascending order of C?

 

Thanks in advance.

6 REPLIES 6
v-lionel-msft
Community Support
Community Support

Hi @ashamsuzzoha ,

 

What is the DAX formula for your measure [C]?
I need a complete sample data model.
Or you can refer to my .pbix file.
My [C] is a sorting of [A], so I add up according to [A] to avoid using measure [C].

v-lionel-msft_0-1608187770057.png

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

ashamsuzzoha
Advocate II
Advocate II

Can you do it without changing C to a calculated column?

v-lionel-msft
Community Support
Community Support

Hi @a_shamsuzzoha ,

 

First, change column [C] to calculated column.

v-lionel-msft_0-1606979747346.png

Measure = 
CALCULATE(
    SUM([B]),
    FILTER(
       ALLSELECTED(Table),
       [C] <= MAX([C])
    )
)

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

a_shamsuzzoha
Regular Visitor

Any help?

amitchandak
Super User
Super User

@a_shamsuzzoha , ascending order C or A ?

C can be a measure like

C =calculate(Sum(Table[B]), filter(allselected(Table), Table[A] <=max(Table[A])))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak Ascending order C

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 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.