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

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

Reply
Anonymous
Not applicable

Rolling average last 3 rows

Hi, I'm new here and I need some help.

I would like to calculate a "W-kee" rolling average over the last 3 rows in the table example as below:

 

jdevalk_0-1633344684963.png

 

So the result should be ((1+4+1)/3=2), but I don't know what DAX formula I need to use.

I think I should use something based on nonblank rows for the W-kee column but I really have no glue.

Please help.

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

Hi, 

According to your description, I can roughly understand your requirement, you can try this measure to get the expected result:

Rolling average =

var _lastrow=CALCULATE(MIN('Table'[SPR]),FILTER(ALL('Table'),[W-kee]=BLANK()&&[W-def]=BLANK()&&[W-mid]=BLANK()&&[W-att]=BLANK()))

return

CALCULATE(AVERAGE('Table'[W-kee]),FILTER(ALL('Table'),[SPR]<=_lastrow-1&&[SPR]>=_lastrow-3))

 

And you can get what you want, like this:

vrobertqmsft_0-1635235935893.png

 

You can download my test pbix file below

Thank you very much!

 

Best Regards,

Community Support Team _Robert Qin

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

9 REPLIES 9
v-robertq-msft
Community Support
Community Support

Hi, 

According to your description, I can roughly understand your requirement, you can try this measure to get the expected result:

Rolling average =

var _lastrow=CALCULATE(MIN('Table'[SPR]),FILTER(ALL('Table'),[W-kee]=BLANK()&&[W-def]=BLANK()&&[W-mid]=BLANK()&&[W-att]=BLANK()))

return

CALCULATE(AVERAGE('Table'[W-kee]),FILTER(ALL('Table'),[SPR]<=_lastrow-1&&[SPR]>=_lastrow-3))

 

And you can get what you want, like this:

vrobertqmsft_0-1635235935893.png

 

You can download my test pbix file below

Thank you very much!

 

Best Regards,

Community Support Team _Robert Qin

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

Anonymous
Not applicable

Great, that's the one I'm looking for.

Much appreciated!

Tanushree_Kapse
Impactful Individual
Impactful Individual

Hi @Anonymous ,

 

var Rolling Average= CALCULATE(Table[W-knee], FILTER(ALLSELECTED(Table[SPR]), ISONORAFTER( Table[SPR], MAX(Table[SPR]), asc)))
Return  (Rolling Average/ 3)

Mark this as a solution, if I answered your question. Kudos are always appreciated.

Thanks

Anonymous
Not applicable

jdevalk_0-1633351279889.png

 

VahidDM
Super User
Super User

Hi @Anonymous 

 

Try this measure:

Measure=
Var _MaxL = calculate(max(table[SPR]),filter(table,table[W-kee]<>""))
Var _MinL = _MaxL-2
return
Calculate(avarage(table[W-kee]),filter(table,table[SPR]>=_MinL &&table[SPR]<=_MaxL ))

 

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

Appreciate your Kudos!!

 

Anonymous
Not applicable

 

jdevalk_0-1633351852563.png

 

 

jdevalk_1-1633351881401.png

 

 

Hi @Anonymous 

 

What is the format of [SPR] column?

 

Appreciate your Kudos!!

 

Anonymous
Not applicable

Whole number

Hi @Anonymous 

 

Can you share your PBIX file with us (After removing sensetive data)?

 

Appreciate your Kudos!!

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.