The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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?
Thank you in advance.
Solved! Go to Solution.
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] ) ) )
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.
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] ) ) )
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.
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.
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
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
123 | |
85 | |
77 | |
55 | |
49 |
User | Count |
---|---|
135 | |
127 | |
78 | |
64 | |
63 |