Hi all,
I'm trying to create a summary of expected hours based on each employee's weekly contract hours and project this only for working days during each month,week,day.
My DAX is like :SUM_WDPerWeek:=IF(MAX('Calendar'[NetWorkingDays])=0,0,CALCULATE(
SUM([NetWorkingDays]),
FILTER(
ALLSELECTED('Calendar'),[Date]),'Calendar'[NetWorkingDays]=1))
My problem here is that :
1. The subtotals (for working days and working hours) are showing the grant total instead of the correct split.
2.How can i calculate the daily workload of each employee(based on their weekly load) and then then multiply it per working day, in order to get the daily sum?
Thanks in advance for any suggestions!
Bookmarks