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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Abdult
Regular Visitor

DAX

  1. Convert the below expression in DAX or explain how you will achieve the result if you have full year exit and headcount data stacked monthly

Annualized Attrition = (Total YTD Exits/YTD Average Headcount) * (12/Number of months passed)

1 ACCEPTED SOLUTION
FarhanAhmed
Community Champion
Community Champion

First you need to calculate Active Headcounts for each month/date. That means if person left/hire during that time, he must be included/excluded from active head counts. There should be "Leaving Date" , "Hiring Date" in your data.

 

Create a YTD measure of based on above.

 

Create a measure that will calculate exit only.

 

The architecture will include 1-active relationship between Date and Employee table. Lets say it is connected with Hiring Date.

 

Then there will be a inactive relationship between Date and Leaving date to calculate exits based on this relationship.

 

In below example there is a Column active and it will hold "1" for all the employees and "Left" column where employees left or Leaving date is not null

 

_Hire = CALCULATE(SUM(Employee[Active]),USERELATIONSHIP(PBI_DimDate[DateSecAlternateKey],Employee[HiringDate]))
_Hire YTD =  CALCULATE([_Hire],DATESYTD(PBI_DimDate[DateSecAlternateKey]))
_Left = CALCULATE(SUM(Employee[Left]),USERELATIONSHIP(PBI_DimDate[DateSecAlternateKey],Employee[LeavingDate]))

 

_ActiveAll = 
Var dt = Max(PBI_DimDate[DateSecAlternateKey])

RETURN

CALCULATE(COUNTROWS(Employee),FILTER(ALLEXCEPT(Employee,Employee[CountryCode]),(Employee[HiringDate]<=dt && (Employee[LeavingDate]>=dt || ISBLANK(Employee[LeavingDate])=TRUE()) )))

 

Then create your above formula using above measures..

 

Annualized Attrition = (Total YTD Exits/YTD Average Headcount) * (12/Number of months passed)







Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
v-henryk-mstf
Community Support
Community Support

Hi @Abdult ,

 

Whether the advice given by @FarhanAhmed  has solved your confusion, if the problem has been solved you can mark the reply for the standard answer to help the other members find it more quickly. If not, please point it out.


Looking forward to your feedback.


Best Regards,
Henry

FarhanAhmed
Community Champion
Community Champion

First you need to calculate Active Headcounts for each month/date. That means if person left/hire during that time, he must be included/excluded from active head counts. There should be "Leaving Date" , "Hiring Date" in your data.

 

Create a YTD measure of based on above.

 

Create a measure that will calculate exit only.

 

The architecture will include 1-active relationship between Date and Employee table. Lets say it is connected with Hiring Date.

 

Then there will be a inactive relationship between Date and Leaving date to calculate exits based on this relationship.

 

In below example there is a Column active and it will hold "1" for all the employees and "Left" column where employees left or Leaving date is not null

 

_Hire = CALCULATE(SUM(Employee[Active]),USERELATIONSHIP(PBI_DimDate[DateSecAlternateKey],Employee[HiringDate]))
_Hire YTD =  CALCULATE([_Hire],DATESYTD(PBI_DimDate[DateSecAlternateKey]))
_Left = CALCULATE(SUM(Employee[Left]),USERELATIONSHIP(PBI_DimDate[DateSecAlternateKey],Employee[LeavingDate]))

 

_ActiveAll = 
Var dt = Max(PBI_DimDate[DateSecAlternateKey])

RETURN

CALCULATE(COUNTROWS(Employee),FILTER(ALLEXCEPT(Employee,Employee[CountryCode]),(Employee[HiringDate]<=dt && (Employee[LeavingDate]>=dt || ISBLANK(Employee[LeavingDate])=TRUE()) )))

 

Then create your above formula using above measures..

 

Annualized Attrition = (Total YTD Exits/YTD Average Headcount) * (12/Number of months passed)







Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!

Proud to be a Super User!




Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.