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
rafal_walisko
Helper I
Helper I

Utilization of resources based on start/end date.

Hello, im trying to calculate utilization rate for resourcers in a company.

The base table looks like this:

 

CustomerResourceStart DateEnd Date
Customer AWorker 102.01.202314.04.2023
Customer AWorker 202.01.202329.12.2023
Customer AWorker 316.01.202328.02.2023
Customer AWorker 401.03.202321.04.2023
Customer AWorker 405.05.202306.06.2023
Customer AWorker 501.03.202331.03.2023

I've added also column that is calculating working days between start and end date

I would like to calculate utilization for each Worker in a Matrix Visual.

In column I'd like to have year/month in rows there will be Customer/Workers hierarchy and of course values that will be represented as utilization rate so working days between start/end date divided by working days in that month.

I was trying to create something based on this https://www.youtube.com/watch?v=YL7H1Rqckb0 but I believe it should be slightly modified.

 

Currently Im receiving something like this:

rafal_walisko_0-1685617720753.png

 and my formula looks like this:

formula =
VAR enddate =
MAX ( 'Calendar'[Date] )
VAR startdate =
MIN ( 'Calendar'[Date] )
VAR result =
CALCULATE (
SUM ( 'Data'[workingdays] ),
ALL ( 'Calendar' ),
'Data'[Start Date] <= enddate,
'Data'[End Date] > startdate
)
RETURN
result

 

5 REPLIES 5
v-jianboli-msft
Community Support
Community Support

Hi @rafal_walisko ,

 

Please try:

CountDay = 
var _a = MIN('Calendar'[Date])
var _b = MAX('Calendar'[Date])
return SUMX('Table',IF(DATEDIFF(MAXX({_a,[Start Date]},[Value]),MINX({_b,[End Date]},[Value]),DAY)>=0,DATEDIFF(MAXX({_a,[Start Date]},[Value]),MINX({_b,[End Date]},[Value]),DAY)))

Rate = 
DIVIDE([CountDay],SUMX('Table',DATEDIFF([Start Date],[End Date],DAY)))

Final output:

vjianbolimsft_0-1686548688338.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Woah 🙂 it loks great, is there any possibility to calculate it only for working days/including holidays? How should I modify the formula 

Hi @rafal_walisko ,

 

NETWORKDAYS returns the number of whole workdays between two dates (inclusive). Parameters specify which and how many days are weekend days. Weekend days and days specified as holidays are not considered as workdays. You can try to modify the DAX with NETWORKDAYS function.

 

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@rafal_walisko , hope the calendar is not connected with data

 

refer

Matrix as Project plan Visual: https://youtu.be/R25QoiyoSVs

 

Power BI: HR Analytics - Employees as on Date : https://youtu.be/e6Y-l_JtCq4
https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...

Thanks for the links, I see that you are calculating for example count of projects. In my case I would like to present the number of working days for each person in each project monthly. That the actual problem. I was able to present the project count.

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.