Forum Discussion
jpoitras
7 years agoFrequent Visitor
Help aggregating data from indirect table
New to Power BI Scraped the forums but haven't landed on an answer that worked for me. I have 3 tables - WorkStream: just an id - WorkStreamCapacity: workStreamId, User, Capacity (number in ...
- 7 years ago
So I've solved my problem by normalizing some of my data further, but mainly by creating a measure using crossfilter which amounts to:
In my WorkStreamCapacities table
Allocation = CALCULATE(SUM(Tasks[Estimate]), CROSSFILTER(Tasks[WorkStreamId],WorkStream[id], both))
Now I can show a person's estimated allocation against their available capacity sliced by work stream.
jpoitras
7 years agoFrequent Visitor
So I've solved my problem by normalizing some of my data further, but mainly by creating a measure using crossfilter which amounts to:
In my WorkStreamCapacities table
Allocation = CALCULATE(SUM(Tasks[Estimate]), CROSSFILTER(Tasks[WorkStreamId],WorkStream[id], both))
Now I can show a person's estimated allocation against their available capacity sliced by work stream.