Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello BI Community!
I want to calculate employees' average tenure for each year and if possible average tenure for each gender and ethnicity group. I appreciate it if someone could help me with this. Here are the dataset and the pbix file.
pbix: https://drive.google.com/file/d/1P_aQGCShF-tVLIlprMN91yAkm8NS7xot/view?usp=sharing
Hi @Nzadeh ,
Have trouble to follow, do you want datediff/years or (sum of tenure/ count of Employees) each year?
Best Regards,
Jay
@Nzadeh , Try a Meausre like
Avg Stay =
CALCULATE(AVERAGEX(FILTER(Employees,Employees[Hire_Date]<=MAX(Dates[Date]) && (ISBLANK(Employees[Termination_Date]) || Employees[Termination_Date]>MAX(Dates[Date]))), DATEDIFF([Hire_Date],if(ISBLANK(Employees[Termination_Date]) || Employees[Termination_Date]>MAX(Dates[Date]), max('Dates'[Date]),Employees[Termination_Date]), MONTH )))
Or a column, that will always give based on today or termination date
Tenure = datediff([Hire_Date], COALESCE([Termination_Date], TODAY()),MONTH)
and then take avg
Thank you so much @amitchandak ! I used both of these options, but I got different results.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |