Hello,
I have the following measure and wanted to know what I need to do to replicate the measure and adjust it to show an 'all' figure unaffected by on screen slicer visuals. (this way I can use it to show slicer selections vs an 'all' figure.)
The measure is:
Result =
VAR denominator =
CALCULATE (
SUM (Table1[sub] ),
Table1[pop] = 1
)
VAR numerator =
CALCULATE (
SUM(Table1[num] ),
Table1[empnum]<> 0
&& Table1[pop] = 1
)
RETURN
numerator/denominator
Any advice welcome.
Thanks
Solved! Go to Solution.
You may create a second metric:
Result (All)=
CALCULATE(
[Result],
REMOVEFILTERS(X)
)
Where X is a list of on-screen slicers you have in place, for example:
REMOVEFILTERS(Customers[Country],Items[Category])
You can leave it as REMOVEFILTERS(), but it may be an overkill depending on the context, so you better specify the sliced fields.
You may create a second metric:
Result (All)=
CALCULATE(
[Result],
REMOVEFILTERS(X)
)
Where X is a list of on-screen slicers you have in place, for example:
REMOVEFILTERS(Customers[Country],Items[Category])
You can leave it as REMOVEFILTERS(), but it may be an overkill depending on the context, so you better specify the sliced fields.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
119 | |
76 | |
66 | |
51 | |
49 |
User | Count |
---|---|
183 | |
101 | |
80 | |
79 | |
77 |