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
Anonymous
Not applicable

Getting particular value of 12 month rolling average

I am able to get the 12-month rolling average using this formula:

Amount-12MRAvg = 
IF(
	ISFILTERED('Orders'[Date]),
	ERROR("Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column."),
    IF(
        MIN('Orders'[Amount]) <> BLANK(), 
        VAR __LAST_DATE = ENDOFMONTH('Calendar'[Date].[Date])
        VAR __DATE_PERIOD =
            DATESBETWEEN(
                'Calendar'[Date].[Date],
                STARTOFMONTH(DATEADD(__LAST_DATE, -11, MONTH)),
                __LAST_DATE
            )
        RETURN
            AVERAGEX(
                CALCULATETABLE(
                    SUMMARIZE(
                        VALUES('Orders'),
                        'Calendar'[Date].[Year],
                        'Calendar'[Date].[QuarterNo],
                        'Calendar'[Date].[Quarter],
                        'Calendar'[Date].[MonthNo],
                        'Calendar'[Date].[Month]
                    ),
                    __DATE_PERIOD
                ),
                CALCULATE(SUM('Orders'[Amount]), ALL('Calendar'[Date].[Day]))
            ), 
        BLANK()
    )
)

 

I am able to plot a line chart with the Calendar[Date] as the axis and the Rolling Average as the value. But I have a requirement to use the 12-month rolling average values of two different attributes and divide them. How do I do that?

 

When I try to just show the current month's 12-month rolling average value, I only get a Blank cell. Why is that?

 

Ideally, if I can get the current month's 12-month rolling average values for the two attributes (Orders and Assets), then I can divide the values to show the actual metric. What am I doing wrong?

 

Thanks.

1 ACCEPTED SOLUTION
Tanushree_Kapse
Impactful Individual
Impactful Individual

Hi @Anonymous ,

 

Try this measure to calculate the Rollig average for 12 month:

Measure= 

 Var Rollingsum= CALCULATE(SUM('Orders'[Amount]), DATESINPERIOD(Calender[Date], LASTDATE(Calender[Date]), -12, MONTH))

RETURN  DIVIDE(Rollingsum, 12)

 

 

I hope this helps!

 

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

 

Thanks!

 

View solution in original post

1 REPLY 1
Tanushree_Kapse
Impactful Individual
Impactful Individual

Hi @Anonymous ,

 

Try this measure to calculate the Rollig average for 12 month:

Measure= 

 Var Rollingsum= CALCULATE(SUM('Orders'[Amount]), DATESINPERIOD(Calender[Date], LASTDATE(Calender[Date]), -12, MONTH))

RETURN  DIVIDE(Rollingsum, 12)

 

 

I hope this helps!

 

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

 

Thanks!

 

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.