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
Hi,
I have the following data sets:
- List of all employees that have worked for the company (includes start and end date of employment)
- List of shifts worked each month
My end goal is to report on how many of our active employees were/are 'utilised' each month.
The attached screenshot shows what I've achieved so far. I've managed to get a utilisation figure by dividing 'is employee utilised?' by 'employee count', but the issue I'm having is that it currently doesn't take into account 'Start Date'. In the example, employee 383 isn't being utilised, but they are an active employee, as their start date is lower than the year/month column. The reason it doesn't is because they didn't work that month and therefore aren't present on my 'list of shifts worked each month' dataset.
Can anyone think of a way around this? Ideally I just need to say =If ('start date calc' < 'year/month'), 1,0)... but this won't work as the employee in question isn't present on the shifts dataset.
Thanks! Let me know if you need any more info.
Hi @DanT1994 ,
I am not sure if I understood your question correctly. Is your problem that you can't get the correct number of active employees for the month? If so, please try this measure.
MonthActiveEmployees =
CALCULATE (
DISTINCTCOUNT ( Employees[ID] ),
FILTER (
ALL ( Employees ),
Employees[Start Date] <= MAX ( shifts[Year/Month] )
&& (
Employees[End Date] > MAX ( shifts[Year/Month] )
|| Employees[End Date] = BLANK ()
)
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 |
---|---|
114 | |
81 | |
75 | |
52 | |
48 |
User | Count |
---|---|
134 | |
124 | |
78 | |
64 | |
63 |