Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi,
I have a table that tracks company headcount (Headcount_C) and I also have a Month_Year column and a Rolling_Month column.
I would like to know the difference between each month, using either the Month_Year or Rolling_Month.
Rolling Month Month_Year Headcount_C (Difference)
1 October 2016 6000 -21
2 September 2016 6021 +3
3 August 2016 6018 +1
I am struggling to get this working, I have tried using PreviousMonth and DatesInPeriod, but I can't seem to get the result I want.
I have also surrounded my statement with IF(Headcount_C>0,............
Is there a way to get this working using the rolling month?
All help appreciated.
Hi @RichWyeth,
According to your description, you should be able to use the formula below to create a calculate column in this scenario. (Assume your table is called "Table1".)
Difference =
VAR rm = Table1[Rolling Month]
VAR hc = Table1[Headcount_C]
RETURN
hc
- CALCULATE (
MAX ( Table1[Headcount_C] ),
ALL ( Table1 ),
Table1[Rolling Month]
= rm + 1
)
Regards
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 29 | |
| 27 | |
| 26 | |
| 24 | |
| 16 |
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 38 | |
| 30 | |
| 21 |