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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
jdevries192
Frequent Visitor

DAX: Calculate Hires and Terminations

Hi All,

 

Looking to calculate with DAX new hire retention in a given month based on an activity table. Issue is an employee may be hired and terminated many times (see employee 1 in example below). So I can't pivot the table to determine hire and termination dates in a given timeframe.

 

Calculation is (Ending Month's Continuous Headcount / Starting Month's Headcount)

 

Example Data below:

EmployeeActivityDate
1Hire1/1/2022
2Hire1/1/2022
1Termination1/5/2022
3Hire1/31/2022
4Hire1/31/2022
3Termination2/2/2022
1Hire2/5/2022
2Termination2/5/2022
1Termination2/6/2022
1Hire2/20/2022

 

For February, Employees 2, 3, and 4 were active at the start of the month. But only Employee 4 was active at the start and end of the month. So the calculation would be:

 

1/3 = 33%.

 

Any help would be appreciated.

 

 

 

2 REPLIES 2
amitchandak
Super User
Super User

@jdevries192 , With help from date table joined to your date of the table

 

Active Employees = calculate(distinctCOUNT(EmpData[ID]) , filter(EmpData, EmpData[Date] <= max(Date[Date]) && [Activity] = "Hire" ))
- calculate(distinctCOUNT(EmpData[ID]) , filter(EmpData, EmpData[Date] <= max(Date[Date]) && [Activity] = "Termination" ))

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak 

You are counting all hires and terminations.

 

I need those who are still active at the start of February (who have been hired but not terminated). And I need those who were active at the start of February and who are still active at the end of February.

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors