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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Spencer
Helper II
Helper II

Calculating Rolling Measure

Hi,

 

I have a table which displays how many people are in each department at the end of every month. 

I'm looking at creating a rolling 12 month measure that gives you the average amount of people across all departments for the past 12 months. (i.e. a headcount).

 

I've tried using the below formula but it is giving me values of around 9 and 10 for the most recent 12 months as a example, when that number should be around 300:

Rolling12mAvHeadcount = CALCULATE(AVERAGE(DeptHC[Headcount]),DATESINPERIOD(DeptHC[MonthPT],LASTDATE(DeptHC[MonthPT]),-12,MONTH))

 

I'm sure I've almost cracked it, just some guidance would be fantastic.

Thanks

Dataset - Headcount by Department per MonthDataset - Headcount by Department per Month

5 REPLIES 5
BhaveshPatel
Super User
Super User

Moving AverageX 12 MONTHS :=
AVERAGEX (
    DATESINPERIOD (
        DeptHC[MonthPT],
         LASTDATE(DeptHC[MonthPT]),
           -12,
            MONTH
    ),
    [DEPTHC HEADCOUNT]
)
 
This would solve your problem. 
Thanks & Regards,
Bhavesh

Love the Self Service BI.
Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to give Kudos.

Hi @BhaveshPatel thanks very much for your response.

On the second last line of your formula, do you need a SUM or AVERAGE function before you name [DEPTHC HEADCOUNT]?

 

Thanks

It should be average as you are calculating AVERAGE.

Thanks & Regards,
Bhavesh

Love the Self Service BI.
Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to give Kudos.

Ok, your equation appears to be averaging the headcount against the departments though, instead of averaging the amount of people overall (Should be around 300 average, as opposed to 9). Hopefully you can see in the screenshot below.

RollingAv.jpg

Sorry for late reply. Send me the test file and will fix the issue for you.

Thanks & Regards,
Bhavesh

Love the Self Service BI.
Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to give Kudos.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.