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
johnsonrs
Regular Visitor

Calculation of Moving Average depending on the date and other value in the same row

Hey everyone, 

 

I already red quite a bit in the community but I did not find the proper solution to my problem.

 

I have a table with following columns

 

SKU, DATE, STOCKLEVEL, SALES

 

With contains data on a daily level for different SKU.

 

Now I want to calculate the Average Sales based on the date and the SKU in ONE row and save that in a new column. I what to that to as a column because I what to be able to filter over it afterwards.

SKU, DATE, STOCKLEVEL, SALES, NEWCOLUMN

A - 01.01.2017- 100 - 10 - Average Sales for the Product A in the last 30 days before the 01.01.2017

 

I also have an seperate date table and a table containing the sales per SKU, and date if this might help.

 

Thanks in advance!

 

 

 

1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @johnsonrs,

 

You could try this formula. 

AverageCol =
CALCULATE (
    AVERAGE ( TableA[SALES] ),
    DATESINPERIOD ( 'Calendar'[Date], 'TableA'[DATE], -30, DAY ),
    ALLEXCEPT ( TableA, TableA[SKU] )
)

One note: If the data is 2017-01-01  100, 2017-01-30  200, the average is (100 + 200) / 2 = 150. NOT (100 + 200) / 30 = 10.

 Calculation of Moving Average depending on the date and other value in the same row.jpg

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards!

Dale

Community Support Team _ Dale
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
aar0n
Advocate II
Advocate II

I am hoping to do a very similar situation - you have it for a 30 day time frame, but the only difference is that i need it to take the average of every value - up to that row!

 

Any suggestions?

v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @johnsonrs,

 

You could try this formula. 

AverageCol =
CALCULATE (
    AVERAGE ( TableA[SALES] ),
    DATESINPERIOD ( 'Calendar'[Date], 'TableA'[DATE], -30, DAY ),
    ALLEXCEPT ( TableA, TableA[SKU] )
)

One note: If the data is 2017-01-01  100, 2017-01-30  200, the average is (100 + 200) / 2 = 150. NOT (100 + 200) / 30 = 10.

 Calculation of Moving Average depending on the date and other value in the same row.jpg

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards!

Dale

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

Helpful resources

Announcements
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.