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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Brotedo
Helper I
Helper I

Rolling Sum that Uses a Variable Factor

I have a monthly sales dataset, like this:

MonthIndexSales
145
255
345
440
550
640
770
860
950

10

55
1150
1240

And I have a table of factors, like this:

MonthsFromCurrentFactor
0.7
1.5
2.2
3.06

I need a measure that, for the given month, calculates the sum of the products of the sales and factors. For example, if the current month is 6, I want the measure to output (40*.7 + 70*.5 + 60*.2 + 50*.06) = 78 

The factor for all other months is 0.

1 ACCEPTED SOLUTION
v-chenwuz-msft
Community Support
Community Support

Hi @Brotedo ,

 

Maybe you can try this.

Measure =
VAR _currentmonth =
    SELECTEDVALUE ( Parameter[Parameter] )
VAR _f =
    ADDCOLUMNS (
        'factors',
        "sales1",
            CALCULATE (
                SUM ( sales[Sales] ),
                FILTER (
                    'sales',
                    [MonthIndex]
                        = EARLIER ( [MonthsFromCurrent] ) + _currentmonth
                )
            ) * [Factor]
    )
RETURN
    SUMX ( _f, [sales1] )

 

Result:

vchenwuzmsft_0-1661934895220.gif

Pbix in the end you can refer.

Best Regards

Community Support Team _ chenwu zhu

 

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

View solution in original post

2 REPLIES 2
v-chenwuz-msft
Community Support
Community Support

Hi @Brotedo ,

 

Maybe you can try this.

Measure =
VAR _currentmonth =
    SELECTEDVALUE ( Parameter[Parameter] )
VAR _f =
    ADDCOLUMNS (
        'factors',
        "sales1",
            CALCULATE (
                SUM ( sales[Sales] ),
                FILTER (
                    'sales',
                    [MonthIndex]
                        = EARLIER ( [MonthsFromCurrent] ) + _currentmonth
                )
            ) * [Factor]
    )
RETURN
    SUMX ( _f, [sales1] )

 

Result:

vchenwuzmsft_0-1661934895220.gif

Pbix in the end you can refer.

Best Regards

Community Support Team _ chenwu zhu

 

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

tamerj1
Super User
Super User

Hi @Brotedo 

please try

NewMeasure =
SUMX (
    FILTER (
        ALLSELECTED ( Sales ),
        Sales[MonthIndex] >= MAX ( Sales[MonthIndex] )
            && Sales[MonthIndex]
                < MAX ( Sales[MonthIndex] ) + COUNTROWS ( Factors )
    ),
    SUMX (
        FILTER ( Factors, Factors[MonthsFromCurrent] = Sales[MonthIndex] ),
        Sales[Sales] * Factors[Factor]
    )
)

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.