Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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.Utilisation Report
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.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!