Reputation: 25
I am trying to build a data-analysis table (in PowerBi if that matters) that shows sum of task hours per resource (row) and date-window (column). I.e getting a result as ...
Resource | Month 1 | Month 2 |
---|---|---|
AB | 40h | 30h |
BB | 20h | 10h |
My data however is structured in a way that I have one data point per resource/task combination without breaking down the date. I.e. the data is structured like ...
Resource | Task | Hours | Start | End |
---|---|---|---|---|
AB | XX | 10h | 10.10.22 | 01.02.23 |
AB | XZ | 5h | 01.11.22 | 05.11.22 |
So i need to sum all tasks per resource but also break them down to how many hours per month. Ideally i can also switch to weeks view in my dashboard.
How can I best achieve this? Transform the data? Some special filter?
Any Tips or pointers to tutorials ecc. would be great. Thanks.
Best
Upvotes: 1
Views: 349
Reputation: 349
If you can store a lot of data, you should do something like this:
Upvotes: 1