Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

How to develop resource load view like in project management software?

Hello!

I have a simple PBIX model

Nikolai_0-1642164584872.png

And I want to make a report, which can show planned effort of person per task per periods of time, like in celoxis:

Nikolai_1-1642164722726.png

I need to make a timeline table and a measure dividing filtered person hours from db_assignment on selected period.

I have made a simple PBIX, can somebody help me?

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Thank you, but I ment I need Matrix form of resource load.

Nikolai_0-1642420301649.png

 

I've found an example! Thanks to @amitchandak 🙂

My refined example here

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

I tried to use this solution on the real data, and did not get a result.

This query joins 3 tables having count of records: db_tasks - 43,5K, db_assignments - 36,15K, dates - 3289.

ResourceLoad =
SUMMARIZE(
filter(
CROSSJOIN(db_assignment, db_task, Local_DateTime),
db_assignment[task_id]==db_task[id]
&& Local_DateTime[Date]>=db_task[planned_start].[Date]
&& Local_DateTime[Date]<=db_task[planned_finish].[Date]
&& NOT(Local_DateTime[IsHolidayInRussia])
),
db_assignment[user_id], db_task[id], Local_DateTime[Date], "_plan", sum(db_assignment[DailyHours]), "_days",count(db_task[Duration])
)

It always stucks at calculating table.

May be there is a better way to make this join?

Anonymous
Not applicable

Thank you, but I ment I need Matrix form of resource load.

Nikolai_0-1642420301649.png

 

I've found an example! Thanks to @amitchandak 🙂

My refined example here

 

Anonymous
Not applicable

Hi @Anonymous ,

I have updated your pbix file to create a Gantt visual based on the data in it as shown below. Please download the attachment later to see if what's inside is what you want.

yingyinr_0-1642395886453.png

Best Regards

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors