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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
Anonymous
Not applicable

Cumulative (running) total working with filters

Hi All,

 

I have create a chart to capture 12 months running total of injuries. Chart works fine without filters. However, if you filter data by region/branch then caclulation stops at last recorded injury date for that region/branch as shown in attached image.

Since this is running figure I expect it to continue the calcluation till last date irrespective of injury is recorded or not. (So 12 months total will decrease for those regions/branches)

 

Below is the formula I use.

TRI = IF (
    ISBLANK ( SUM ( OHS_Register[Counter]) ),
    BLANK (),
    CALCULATE (
        SUM( OHS_Register[Counter] ),
        DATESBETWEEN (
           Dates[Date],
            FIRSTDATE ( DATEADD ( Dates[Date], -12, MONTH ) ),
            ENDOFMONTH ( DATEADD ( Dates[Date], 0, MONTH ) )
        )
    )
)

 

How do I correct this?Graph after fileters applyGraph after fileters apply

 

7 REPLIES 7
Ashish_Mathur
Super User
Super User

Hi,

 

That is happening because of your ISBLANK() statement.  Remove that.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi @Ashish_Mathur,

 

I try that one but it didn't work either.

 

Calculation stops at last data point marked as injuy.

 

Thanks!

Hi,

 

Share the link from where i can download your file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi @Anonymous,

 

Try these formulas

 

TRI mod = CALCULATE(SUM( OHS_Register[Counter]),DATESBETWEEN(Dates[Date],MINX(ALLSELECTED(Dates[Date]),Dates[Date]),MAX(Dates[Date])))

 and

 

TRIFR mod = ([TRI mod]/[Total_Hours])*1000000

 

Untitled.png

 

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi @Ashish_Mathur,

 

This formula gives cumulative total from the begining. I want is for moving total for 12 months foe each month and in my table it didn't work for eastern and western regions.

 

Thanks!

Hi,

 

The data range will be dependent on the selection made in the slicer - i believe that is what you want.  Please recheck.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.