Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello!
I have a simple PBIX model
And I want to make a report, which can show planned effort of person per task per periods of time, like in celoxis:
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?
Solved! Go to Solution.
Thank you, but I ment I need Matrix form of resource load.
I've found an example! Thanks to @amitchandak 🙂
My refined example here
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?
Thank you, but I ment I need Matrix form of resource load.
I've found an example! Thanks to @amitchandak 🙂
My refined example here
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 39 | |
| 38 | |
| 21 |
| User | Count |
|---|---|
| 176 | |
| 131 | |
| 118 | |
| 82 | |
| 54 |