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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
datagorillagirl
Microsoft Employee
Microsoft Employee

null

null

1 REPLY 1
amitchandak
Super User
Super User

@datagorillagirl , Assume you have date, if not create date with help from Month Year

Date = Datevalue("01-"&[Fiscal Month])

 

Join with date table, you that in slicer and axis

 

Try a measure like, if Ending HC is a column at the month level

 

Rolling 12 =

 

 

Rolling 12 =

new measure =
var _max = maxx(allselected('Date'),'Date'[Date])
var _min = minx(allselected('Date'),'Date'[Date])

var _diff = datediff(_min, _max, Month) +2
return

 

CALCULATE(Average(Table[End HC]),DATESINPERIOD('Date'[Date],Eomonth(MAX('Date'[Date]),1),-1*_diff ,MONTH))

 

 

 

or

 

 

Rolling 12 =

new measure =
var _max = maxx(allselected('Date'),'Date'[Date])
var _min = minx(allselected('Date'),'Date'[Date])

var _diff = datediff(_min, _max, Month) +2
return

 

CALCULATE(AverageX(Values('Date'[Date]), calculate(Lastnonblankvalues('Date'[Date], Sum(Table[End HC])))),DATESINPERIOD('Date'[Date],Eomonth(MAX('Date'[Date]),1),-1*_diff ,MONTH))

 

 

 

 

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors