Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I created a measure which calculates a percentage utilization. The measure is below:
Utilization Percent = (
SUM('Resource Utilization'[Billable Hours])
/
(
IF(
CALCULATE( SUM('Resource Utilization'[Work Week Hours]) ) = BLANK(),
0,
CALCULATE( SUM('Resource Utilization'[Work Week Hours]) )
) -
IF(
CALCULATE( SUM('Resource Utilization'[Time off Hours]) ) = BLANK(),
0,
CALCULATE ( SUM('Resource Utilization'[Time off Hours]) )
) -
IF(
CALCULATE( SUM('Resource Utilization'[Holiday Hours]) ) = BLANK(),
0,
CALCULATE ( SUM('Resource Utilization'[Holiday Hours]) )
)
)
) * 100
I want to create another measure, which calculates the sum of the above measure. I was wondering is there a way to create this measure? I tried a few scenarios with SUM and SUMX, but I either get an incorrect SUM amount or I get a syntax error.
Jason
Solved! Go to Solution.
Hi @ryan_mayu ,
I was able to figure out how to do this. What I did is the following:
Sum Utilization = SUMX(VALUES('Resource Utilization'[Id]), [Utilization Percent])
It seems to work.
Jason
could you pls provide the sample data and expected output?
Proud to be a Super User!
Hi @ryan_mayu ,
I was able to figure out how to do this. What I did is the following:
Sum Utilization = SUMX(VALUES('Resource Utilization'[Id]), [Utilization Percent])
It seems to work.
Jason
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.