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

Cummilative sum after a specific month

Hi I want to display the cummilative sum only from August months onward but not able to acheive this .

In Aug , Final FG STK Total should be 221.362 +(-69.45) ( in current it is showing only -69.45) In Sep , Final FG STK Total should be 221.362 +(-69.45) + 10.55  (in current it is showing only 10.55) & so on

 

Stuck in getting those values.

bibhu059_123_1-1721455563750.png

 

2 ACCEPTED SOLUTIONS
danextian
Super User
Super User

Hi @Anonymous 

Try this calculated column

CALCULATE (
    SUM ( 'table'[rolling total] ),
    FILTER (
        ALL ( 'table' ),
        'table'[month] >= 7
            && 'table'[month] <= EARLIER ( 'table'[month] )
    )
)




Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

Samarth_18
Community Champion
Community Champion

Hi @Anonymous ,

 

You could try below code:-

Cumulative_Total = 
VAR CurrentMonth = [Month]
var _result =   
    CALCULATE(
        SUM('Table (3)'[Rolling_total]),
        FILTER(
            ALL('Table (3)'),
            [Month] <= CurrentMonth && [Month] >= 7
        )
    )
RETURN IF('Table (3)'[Month] >=8,_result)

Output:-

Samarth_18_0-1721460512653.png

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

View solution in original post

3 REPLIES 3
Samarth_18
Community Champion
Community Champion

Hi @Anonymous ,

 

You could try below code:-

Cumulative_Total = 
VAR CurrentMonth = [Month]
var _result =   
    CALCULATE(
        SUM('Table (3)'[Rolling_total]),
        FILTER(
            ALL('Table (3)'),
            [Month] <= CurrentMonth && [Month] >= 7
        )
    )
RETURN IF('Table (3)'[Month] >=8,_result)

Output:-

Samarth_18_0-1721460512653.png

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

danextian
Super User
Super User

Hi @Anonymous 

Try this calculated column

CALCULATE (
    SUM ( 'table'[rolling total] ),
    FILTER (
        ALL ( 'table' ),
        'table'[month] >= 7
            && 'table'[month] <= EARLIER ( 'table'[month] )
    )
)




Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
Anonymous
Not applicable

Hi @danextian  , 

You made my day:)

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.