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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
diederd
Helper II
Helper II

Employee turnover/total headcount

Hello.

 

 

I have recently received a request in which our HR Dept would like to have a report displaying the following:

 

- total employees/head count for a date period (broken down by year)

- noting that an employee could have been employed in Role A and during the year promoted to a new Role B

 

I have attached a screenshot of the data structure I've been provided; hoping someone could point me in the right direction as to how to go about starting this DAX query?

 

screenshot.png

 

Thank you in advance.

1 ACCEPTED SOLUTION
v-lid-msft
Community Support
Community Support

Hi @diederd ,

 

We can create a measure using following formula to meet your requirement:

 

HeadCount = 
COUNTROWS (
    DISTINCT (
        SELECTCOLUMNS (
            FILTER (
                'Table',
                OR (
                    AND (
                        'Table'[End Date] >= MAX ( 'calendar'[Date] ),
                        'Table'[Start Date] <= MIN ( 'calendar'[Date] )
                    ),
                    AND ( ISBLANK ( 'Table'[End Date] ), [Start Date] <= MIN ( 'calendar'[Date] ) )
                )
            ),
            "Name", [Name]
        )
    )
)

14.PNG

 

If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.

 


BTW, pbix as attached.

 

Best regards,

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-lid-msft
Community Support
Community Support

Hi @diederd ,

 

We can create a measure using following formula to meet your requirement:

 

HeadCount = 
COUNTROWS (
    DISTINCT (
        SELECTCOLUMNS (
            FILTER (
                'Table',
                OR (
                    AND (
                        'Table'[End Date] >= MAX ( 'calendar'[Date] ),
                        'Table'[Start Date] <= MIN ( 'calendar'[Date] )
                    ),
                    AND ( ISBLANK ( 'Table'[End Date] ), [Start Date] <= MIN ( 'calendar'[Date] ) )
                )
            ),
            "Name", [Name]
        )
    )
)

14.PNG

 

If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.

 


BTW, pbix as attached.

 

Best regards,

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

v-lid-msft.

 

Thank you so much for your prompt response/answer.

 

This is simply genius!! Perfect in the way in which it answers the question raised by our HR team and get's me out of a tight spot 😉 Thank you again for your help in providing the solution.

sturlaws
Resident Rockstar
Resident Rockstar

Hi @diederd ,

 

not easy to figure out what you want to do, from you requirement description and you data structure.

 

-noting that an employee could have been employed in Role A and during the year promoted to a new Role B

How should this be handled when looking at period where an employee has changed role? Should the employee be part of the head count for each role in that period, or only the last? Or the only the first?.

 

From your screenshot of the data structure, there is no employee-id. If I can assume that each row is a distinct employee, then the only option would be to use the COUNTROWS-function. But then it would not be possible to detect if an employee has changed e.g. team or work location, only to do the head count pr group. 

 

You mention Roles, but there are no Roles-column in your data structure.

Cheers,
Sturla

Helpful resources

Announcements
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!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.