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
arnabmit
Helper I
Helper I

Error in Rolling 12 month average

Hi,

 

I was trying to replicate Alberto Ferrari's method of Rolling 12 month average (Average of -13 to -1 month), but it is not matching with the manual calculation. Any idea why it is so?

 

My regular calendar table is _Calendar, and the disconnected calendar table with inactive relationship is '12m Cal'

Avg Rolling 12M = 
VAR RefDate = MAX(_Calendar[Date])
VAR PrevDates = 
    DATESINPERIOD(
        '12m Cal'[Date],
        EDATE(RefDate,-1),
        -12,
        MONTH
    )
VAR Result = 
    CALCULATE(
        DIVIDE([MTD],12),
        REMOVEFILTERS('_Calendar'),
        KEEPFILTERS(PrevDates),
        USERELATIONSHIP('12m Cal'[Date], _Calendar[Date])
    )
RETURN
    Result

Excel file 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@arnabmit , Check the suggestion from SpartaBI. Try like

 

12 Month Avg = CALCULATE(AverageX(Values('Date'[MONTH Year]),calculate(Sum('Table'[Value)))
,DATESINPERIOD('Date'[Date ],Eomonth(MAX('Date'[Date ])-1) ,-12,MONTH))

 

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@arnabmit , Check the suggestion from SpartaBI. Try like

 

12 Month Avg = CALCULATE(AverageX(Values('Date'[MONTH Year]),calculate(Sum('Table'[Value)))
,DATESINPERIOD('Date'[Date ],Eomonth(MAX('Date'[Date ])-1) ,-12,MONTH))

 

SpartaBI
Community Champion
Community Champion

@arnabmit I'm not sure why you have another disconnected calendar table. 
You can PM me and we can take a look together at your model in zoom if you want

It is as per Alberto Ferarri's method here https://www.youtube.com/watch?v=ACvYaXnpyCM

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.