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

DAX to calculate Total Hours based on different dates

I am working on a timesheet report and facing one issue.

As of now, to calculate Available Hours of employees we are calculating based on

Count of Employees selected * Count of Weeks Selected * 40

 

abhishekmor_0-1621105830714.png

 

abhishekmor_1-1621105830723.png

 

 

abhishekmor_2-1621105830728.png

 

 

Now manager requesting to calculate Available hours based on Employee’s joining date.

Employee               JoinDate

E1                           05/02/2021

E2                           25/01/2021

E3                           15/03/2020

If I am selecting 3 employees from Team Slicer and first 3 months of 2021, so for E1 and E2 employees it should calculate from their joining date and not from the week selected and for E3 it should calculate from first week selected as it is greater than joining date.

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , Try like

 


new measure =
var _max = maxx(allselected('Date'), Date[Date])
var _min1 = maxx(allselected('Date'), Date[Date])
var _min = max(_min1, min(employee[joining date])
return
sumx(values(Employee[Employee]), calculate(datediff(_min1, _max,week))*40)

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.

Top Solution Authors