Forum Discussion
Resources mapping using Project (Planner) and MS Power BI template
To make this happen you need to two pieces of information: Planned Work and Resource Availability (hours). Here is a high-level overview of what's needed. It's assumed you have some Power BI DAX and data modeling skills.
Planned Work - The Resource Timephased table has the Planned Work (PW) with a Planned Work Start (bins) column that allow you to group PW by month. Ensure the Planned Work Start data is related to your Date field in your Calendar table.
Resource Availability (hours) - This doesn't exist in the template. You can create a table contains the monthly availability of each resource. Add this table to your model and related it your Bookable Resources table
Using the Planned Work and Resource Availability information create three measures. One for Planned Work, another for Resource Availability and the final one for your monthly percentage. As a reference, here is an example of the measures. The field names won't match your templated, but you get the idea.
Total Planned Hours = SUM('Planned Work'[Planned Hours])
Total Available Hours = SUM('Resource Availability'[Available Hours])
Utilization % = DIVIDE([Total Planned Hours], [Total Available Hours], 0)
- RatanPushpAug 04, 2025Brass Contributor
Hello Sidimm,
Resource utilization report is not part of Power BI report pack and require custom development. Assume, you are looking something similar to below report.
https://www.linkedin.com/posts/ratan-pushp_powerbi-projectonline-projectmanagement-activity-7295710080505630720-QDEV?utm_source=share&utm_medium=member_desktop&rcm=ACoAAARF1oIBYwYyPfvSAIEhai53QlcZqxpF6uk
I hope it is helpful for you!
Ratan Pushp
- sidimmAug 05, 2025Copper Contributor
Hi Ratan,
This is exactly what I was looking for—thank you! Would you mind elaborating a bit on how you created it? and can it be built in the power BI dashboard.
Thanks again,
Sidi M- RatanPushpAug 06, 2025Brass Contributor
Hello Sidi,
This resource utilization report is developed using Project Online data tables, Resource assignments and capacity.
Resource Utilization percentage is calculated by dividing sum of assignment work by sum of resource capacity.
To achieve similar report for Project (Planner) additional customization is required as resource capacity not available in existing solution tables.
Thanks & Regards,
Ratan Pushp