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
Anonymous
Not applicable

Working hours considering overlap times

Good morning everyone!

 

I was wondering if I could get some help with the following problem. For a specific task inside our site, I am getting the following information directly from the WMS:

- USER ID

- Task ID

- Start Time

- End Time

- Quantity of SKU's processed

 

From that information, I am trying to get the working hours and productivity for each user. The problem is that due to the client needs, some colaborators have to perform tasks in bewteen. For example, let's consider the following:

- I started TASK1 at 10:30 with 10 SKU's

- I started TASK2 at 10:43 with 2 SKU's

- I finished TASK2 at 10:55

- I finished TASK1 at 11:15

 

I would like to consider:

- If there is an overlap, consider the earliest start time (10:30)

- If there is an overlap, consider the latest end time (11:15)

- Therefore the working hours would be 45 minutes

- Consider the total SKU's processed (12 lines)

- Productivity: 12/45 = 16 sku's per hour

 

I also have to consider scenarios where TASK2 would start after TASK1 and end also after TASK1 aswell:

- TASK1 START TIME: 10 AM

- TASK 2 START TIME: 10:30 AM

- TASK 1 END TIME 10:40 AM

- TASK 2 END TIME: 10:45

 

Another possible solution that I was thinking about was consider the total SKU's processed by one user on a shift, and afterwards, consider the total working hours and then substract the overlaping times. I would really appreciate any help with this scenarios.

 

Best regards, Diego

8 REPLIES 8
AlB
Super User
Super User

Hi @Anonymous

 

I'll propose a pretty simple solution to start with. It will probably need refinement depending on how you want to deal with data for several days. This would probably work at the day level:

 

1. Set [USER ID] on the rows of a matrix visual. Date (day level) on the columns

2. Set a measure like this in values of the matrix:

 

Productivity =
DIVIDE (
    SUM ( Table1[NumSKUs] );
    ( MAX ( Table1[End Time] ) - MIN ( Table[Start Time] ) ) * 24
)

This should give you productivity in SKUs per hour. It assumes the time columns are in Date/Time format.

Anonymous
Not applicable

Hey AIB,

 

First of all thank you for taking the time for reading and helping me with this! 

 

Regarding the data, for example, my shift is from 8:00 AM until 17:30 PM, durning that time I am supposed to be working on a specific task, but due to activities related to the work, helping a coworker, breaks, being on the phone, going for lunch, etc. I don't spend the whole shift at those specific tasks that I'm suppose to do.

 

Therefore I would like to calculate the amount of time that I am actually doing that specific task, that is why I am trying to calculate the duration of each activity (End - Start time) and then sum all the durations from one shift. And based on that time and considering the amount of SKU's processed, determine:

- The "real" working hours

- The productivity (SKU's / Working hours) 

 

I hope that clarifies the problem that I'm facing.

 

Once again thank you for your help!

@Anonymous

OK, so the real working hours would be the sum  of (End_Time - Start_Time) for all activities per user and day, correct?

do you have data on several days? (I guess so)

Can you show the structure of the tables in your model (in yo do not share the pbix)? 

Anonymous
Not applicable

Sorry for the delay, I was out of office on friday.

 

Responding to your questions:

 

OK, so the real working hours would be the sum  of (End_Time - Start_Time) for all activities per user and day, correct?

 

- Correct, but the problem that I have is that if one person performs 2 or more tasks durning the same (or part of the) time, I should only consider the amount of time once, but sum the total SKU's processed.

 

do you have data on several days? (I guess so)

 

- Yes i do, usually I work this data on Excel on periods of 5 days (weekly data) or 20-22 days (monthly data)

 

 

Can you show the structure of the tables in your model (in yo do not share the pbix)? 

 

I tried to make something on power BI but it ended being pretty messy, here is part of the raw data extracted from the data base:

 

TASK_IDSTART_DATEEND_DATESKUUNITSUSER
TASK107-12-2018 14:1707-12-2018 14:5823USER1
TASK207-12-2018 14:2407-12-2018 14:4122USER1
TASK307-12-2018 14:2507-12-2018 14:4318USER1
TASK407-12-2018 14:2507-12-2018 14:3511USER2
TASK507-12-2018 14:2807-12-2018 14:3511USER3
TASK607-12-2018 14:3007-12-2018 14:3222USER4
TASK707-12-2018 14:3007-12-2018 14:4922USER5
TASK807-12-2018 14:4007-12-2018 14:5225USER2
TASK907-12-2018 14:4507-12-2018 14:5922USER1
TASK1007-12-2018 14:4907-12-2018 15:0111USER3
TASK1107-12-2018 14:4907-12-2018 15:3511USER5

 

For example, for task 1, 2, 3 and 9 they were done by the same "USER1",

 

therefore i should add the total amount of time worked (end - start date) but without the overlaps. which would be 14:59 - 14:17 = 42 minutes.

Besides, in total he worked over 7 SKU's, so the productivity would be 7 / 42 (skus/min) -> 10 sku's per hour

 

On the other side, for USER2, he did 2 tasks without any overlap, so the total time would be the sum of the working hours.

 

And therefore the productivity would be:  (1+2) /( (14:52 - 14:40) + (14:35 - 14:25))

 

 

Once again thank you for your help!

@Anonymous

Ok, I think I get it. Could you post some more data including more than one day?

Anonymous
Not applicable

I already found a way to consider only times between working hours (09:00 - 12:00 and 13:15 - 17:15) but I am missing the part on how to consider time without the overlaps.

 

Once again thank you for your help!

Hi @Anonymous

Can you share the pbix? It'd be easier to help you with that

Anonymous
Not applicable

@AlBPlease find the sample .pbix.  I am facing same issue. https://drive.google.com/file/d/19XcxqyJcBxQy1mZSop4_cF1iEEGm61pJ/view?usp=sharing

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.