Forum Discussion
Bfaws
Helper III
6 years agoMeasure for rolling 12 month average
Hi, I`m looking for a measure to calculate average Full time equivalent (FTE) over a 12 month rolling period. I have a table that shows the sum of FTE for each month. What I would like is an ad...
stevedep
Memorable Member
6 years agoI see,
Rolling12month =
var v_dates = DATESINPERIOD( Rolling_Calendar_Lookup[Date]; MAX( Rolling_Calendar_Lookup[Date] ); -12; MONTH )
return
AVERAGEX(v_dates;[sum FTE])Power BI file here.
Hope it helps.
Kind regards,
Steve.
Bfaws
Helper III
6 years agoHi Steve,
Many thanks. That's worked exactly as expected.
Brendan