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

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.

Forum statistics

Threads
1,214,970
Messages
6,122,514
Members
449,088
Latest member
RandomExceller01

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