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! 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
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.