Total due hours for each person, each one with date in and date out, and on a specific range of days

pedroccamara

New Member
Joined
Feb 23, 2016
Messages
5
My model has 3 fact tables and for that reason all of them are connected with dates through an inactive connection.

I want to get this information from 5 jan till 12 Jan. The problem is that my measure sum correctly the Due hours for each person but doesn't sum. The detail numbers are correct.

apagar.JPG


I' ve created a measure :

DueWorkTime = SUM ( 'Tab Dates'[DueWorkTime] ) allows me to sum all weekdays from my calendar table

Second measure:

DateMin =
CALCULATE (
MAX ( 'Tab TimeSheet'[Date] ),
FILTER (
'Tab TimeSheet',
'Tab TimeSheet'[id_user] = RELATED ( 'Tab Employee'[id_user] )
))

There's also a DateMax. My point is to get the due time for each employee according to their dates in and out.

Now, i can do the main measure of Due Hours for each employee

T Hr Due =
CALCULATE (
[DueWorkTime],
DATESBETWEEN ( 'Tab Dates'[Date], [DateMin], [DateMax]),
VALUES( 'Tab Dates' )
)

And, as you all can see, the totals for this measure aren't good. They show me only the due time for the filter date (from 5 till 12) which means 7 days, times 8 hours each day, 56 hours.

Can anybody help me here? OR is there any other, better way to solve this?

Thanks a lot all of you

Pedro
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)

Forum statistics

Threads
1,225,635
Messages
6,186,120
Members
453,340
Latest member
Stu61

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top