Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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.
Solved! Go to Solution.
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!
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!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |