Forum Discussion
Anonymous
7 years agoNot applicable
Help Calculating YTD Utilization by Month
I am trying to calculate YTD Utilization by month for my team. I have two different calculations that I am trying to do. The first is per team member. The second is for the entire team. Each mont...
- 7 years ago
Hi,
Try this measure
=CALCULATE([Billable hours],DATESYTD(Calendar[Date],"31/12")/(161.3333*MONTH(MAX(Calendar[Date])))
I have assumed the following:
- Billable hours is a measure
- There is a Calendar Table with a column of Year and Month. The Dates in the Calendar Table should run until the last date in the Date column of your Data Table
- There is an active relationship from the Date column of your Data Table to the Date column of the Calendar Table
- To your visual, you have dragged Year and Month from the Calendar Table
Ashish_Mathur
7 years agoSuper User
Hi,
Try this measure
=CALCULATE([Billable hours],DATESYTD(Calendar[Date],"31/12")/(161.3333*MONTH(MAX(Calendar[Date])))
I have assumed the following:
- Billable hours is a measure
- There is a Calendar Table with a column of Year and Month. The Dates in the Calendar Table should run until the last date in the Date column of your Data Table
- There is an active relationship from the Date column of your Data Table to the Date column of the Calendar Table
- To your visual, you have dragged Year and Month from the Calendar Table