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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
James__
Frequent Visitor

Rolling average same period last year

Hi,

 

I have a rolling average measure which works as it should: 

@rolling_avg_sales_per_day = AVERAGEX(FILTER(ALLSELECTED('Calendar'),'Calendar'[Date]<=MAX('Calendar'[Date])),[@@@product_sales])
 
James___0-1669804015112.png

 

 
I then try and look for the same rolling average for the same period last year, but not getting the desired result. I have tried 2 measures without success:
1. 
@rolling_avg_sales_per_day_SPLY = CALCULATE([@rolling_avg_sales_per_day],SAMEPERIODLASTYEAR('Calendar'[Date]))
2. 
@rolling_avg_sales_per_day_SPLY = CALCULATE([@rolling_avg_sales_per_day],DATEADD('Calendar'[Date],-1,YEAR))
 
instead i am getting this:
 
James___1-1669804054123.png

 

 

Can anyone help with the correct measure, please?

 

Thanks

James 

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

Hi @James__ ,

 

According to your description, here are my steps you can follow as a solution.

You can create a measure as below:

 

 

Sales R12M = 
VAR NumOfMonths = 12
VAR LastCurrentDate =
    MAX ( 'Date'[Date] )
VAR Period =
    DATESINPERIOD ( 'Date'[Date], LastCurrentDate, - NumOfMonths, MONTH )
VAR Result =
    CALCULATE (
        AVERAGEX (
            VALUES ( 'Date'[YearMonth]),
            [Sales Amount]
        ),
        Period
    )
VAR FirstDateInPeriod = MINX ( Period, 'Date'[Date] )
VAR LastDateWithSales = MAX ( Sales[Order Date] )
RETURN
    IF ( FirstDateInPeriod <= LastDateWithSales, Result )

 

 

Then the result is as follows.

vtangjiemsft_0-1669864800164.png

You can refer to the following documents that may be helpful to you:

Rolling 12 Months Average in DAX - SQLBI

Solved: Rolling 12M Average only calculate average on year... - Microsoft Power BI Community

Cumulative rolling average by day/month - Microsoft Power BI Community

Solved: Need help with rolling periods past 12M, 6M, P3M a... - Microsoft Power BI Community

 

Best Regards,

Neeko Tang

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

1 REPLY 1
v-tangjie-msft
Community Support
Community Support

Hi @James__ ,

 

According to your description, here are my steps you can follow as a solution.

You can create a measure as below:

 

 

Sales R12M = 
VAR NumOfMonths = 12
VAR LastCurrentDate =
    MAX ( 'Date'[Date] )
VAR Period =
    DATESINPERIOD ( 'Date'[Date], LastCurrentDate, - NumOfMonths, MONTH )
VAR Result =
    CALCULATE (
        AVERAGEX (
            VALUES ( 'Date'[YearMonth]),
            [Sales Amount]
        ),
        Period
    )
VAR FirstDateInPeriod = MINX ( Period, 'Date'[Date] )
VAR LastDateWithSales = MAX ( Sales[Order Date] )
RETURN
    IF ( FirstDateInPeriod <= LastDateWithSales, Result )

 

 

Then the result is as follows.

vtangjiemsft_0-1669864800164.png

You can refer to the following documents that may be helpful to you:

Rolling 12 Months Average in DAX - SQLBI

Solved: Rolling 12M Average only calculate average on year... - Microsoft Power BI Community

Cumulative rolling average by day/month - Microsoft Power BI Community

Solved: Need help with rolling periods past 12M, 6M, P3M a... - Microsoft Power BI Community

 

Best Regards,

Neeko Tang

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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