Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi
I would like to know how can i get a headcount base on these criteria
Head Count
1. HeadCount by week for the last 12 weeks
2. HireDate and Termination Date
and as a Second Part
Capacity
1. Total Capacity by week in hours for the last 12 week
Hi @KevinMorneault ,
Can you provide dummy data and expected results? Are you asking a question in the PQ forum, do you want to get the result in Power Query? Generally speaking, it is more convenient to use DAX functions in Power BI Desktop for your needs.
For example,
create a simple measure like
Count for the last 12 Weeks =
CALCULATE (
COUNT ( Table[Column] ),
DATESINPERIOD ( 'Date'[Date], MAX ( 'Date'[Date] ), -84, DAY )
)
DATESINPERIOD function (DAX) - DAX | Microsoft Docs
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please post your tables without confidential data. Refer to this - How to provide sample data in the Power BI Forum - https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.