Forum Discussion
Ignoring the slicer Selected value in calculating average - In graph chart
- 4 years ago
Anonymous , Try measure like
calculate(Average(Table[% task completion]), filter(all(Table[company]) , table[company] <> selectedvalue(table[company])))
best is to use an independent company table
calculate(Average(Table[% task completion]), filter((Table[company]) , table[company] <> selectedvalue(company[company])))
or
calculate(Average(Table[% task completion]), filter((Table[company]) , not table[company] in allselected(company[company])))
Need of an Independent Table in Power BI: https://youtu.be/lOEW-YUrAbE
Anonymous , Try measure like
calculate(Average(Table[% task completion]), filter(all(Table[company]) , table[company] <> selectedvalue(table[company])))
best is to use an independent company table
calculate(Average(Table[% task completion]), filter((Table[company]) , table[company] <> selectedvalue(company[company])))
or
calculate(Average(Table[% task completion]), filter((Table[company]) , not table[company] in allselected(company[company])))
Need of an Independent Table in Power BI: https://youtu.be/lOEW-YUrAbE