Forum Discussion
Anonymous
7 years agoNot applicable
contribution to whole filtering problem
I have a puzzle that I'm struggling to categorize properly in data modeling terms, as I'm hoping with the right terms, I'll find the right solution. In the simplified diagram below, my tabular mo...
- Anonymous7 years ago
Thanks! The solution ended up being a variation on this, though I will also take a look at the suggested solution re: average across all to see if that could help as well. https://www.youtube.com/watch?v=IfC7gBfod50&feature=youtu.be
Anonymous
7 years agoNot applicable
Anonymous - You can find the average hours for all of the employees for whatever filters are in context (and specify skill level based on selected employee's skill level) with the following Measure:
Billable Hours (Average) =
var _skill = MAX(Employee[Skill Level])
return CALCULATE(
AVERAGE(WIP[Billable Hours]),
ALL(Employees[Employee Name]),
Employee[Skill Level] = _skill
)- Anonymous7 years agoNot applicable
Thanks! The solution ended up being a variation on this, though I will also take a look at the suggested solution re: average across all to see if that could help as well. https://www.youtube.com/watch?v=IfC7gBfod50&feature=youtu.be