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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
heidibb
Helper IV
Helper IV

Rolling Calculation Help Needed

Hello,

My goal is to get a rolling total for three trimesters and I'm having some trouble. I have Trimester in my data below as well as a trimester sequence, which is formatted as a whole number. Ultimately, I would like a three trimester rolling total on each line. For example, Summer 2017-2018, I would like that to be 3676+3848+4826.

heidibb_0-1725301371821.png

 

I have tried the following, but I can't figure out how to get it to total what I ultimately want. Note that I'm not the best with ALLEXCEPT. Trimester and Sequence comes from one data connection and all the filters on the left of the page come from another. The data model has them joined with a Many to One cardinatlity, Cross-filter direction = Single 

heidibb_1-1725301898395.png

 

 

 

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.

Please check the below picture and the attached pbix file.

 

Jihwan_Kim_1-1725304129746.png

 

 

Jihwan_Kim_0-1725304042968.png

 

value total: = 
SUM( data_fact[value] )

 

WINDOW function (DAX) - DAX | Microsoft Learn

 

expected result measure: = 
CALCULATE (
    [value total:],
    WINDOW (
        -2,
        REL,
        0,
        REL,
        ALL ( period_dimension[sequence], period_dimension[trimester] ),
        ORDERBY ( period_dimension[sequence], ASC )
    )
)

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

View solution in original post

1 REPLY 1
Jihwan_Kim
Super User
Super User

Hi,

I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.

Please check the below picture and the attached pbix file.

 

Jihwan_Kim_1-1725304129746.png

 

 

Jihwan_Kim_0-1725304042968.png

 

value total: = 
SUM( data_fact[value] )

 

WINDOW function (DAX) - DAX | Microsoft Learn

 

expected result measure: = 
CALCULATE (
    [value total:],
    WINDOW (
        -2,
        REL,
        0,
        REL,
        ALL ( period_dimension[sequence], period_dimension[trimester] ),
        ORDERBY ( period_dimension[sequence], ASC )
    )
)

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Helpful resources

Announcements
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

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.