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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
DanT1994
Helper I
Helper I

Formula to take into account missing data from one dataset

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 ReportUtilisation Report

1 REPLY 1
v-kkf-msft
Community Support
Community Support

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 ()
            )
    )
)

vkkfmsft_0-1652320126046.png

 

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.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.